作业08: 简单的数组运用

作业08: 简单的数组运用


1.第五章 第11题 打印以下图案(用字符数组的方法)

* * * * *
 * * * * *
  * * * * *
   * * * * *
    * * * * *


2.

//第五章 第17题 输入10个学生的姓名,学号和成绩,将其中不及格者的姓名,学号和成绩输出。


/* 第五章 第11题 打印以下图案(用字符数组的方法)
* * * * *
 * * * * *
  * * * * *
   * * * * *
    * * * * *
*/
#include<iostream>
using namespace std;
int main()
{
/*define*/
	int i,j;
	char a[5][5];
	char space=' ';
/*input*/
	for (i=0;i<5;i++)
		for (j=0;j<5;j++)
			a[i][j]='*';
/*output*/
	for (i=0;i<5;i++)
	{
		for (j=0;j<i;j++)
		     cout<<space;
		for (j=0;j<5;j++)
			cout<<a[i][j]<<' ';
	    cout<<'\b';
	    cout<<endl;
	}
return 0;
}


/* 第五章 第11题 打印以下图案(用字符数组的方法)
* * * * *
 * * * * *
  * * * * *
   * * * * *
    * * * * *
*/
#include<iostream>
#include<string>
using namespace std;
int main()
{
/*define*/
    void space(int i);
	int i;
	string s="* * * * *";
/*figure out*/
	for (i=0;i<5;i++)
		space(i),cout<<s<<endl;
return 0;
}

void space (int i)
{
	int k;
	for (k=0;k<i;k++)
		cout<<' ';
}


//第五章 第17题 输入10个学生的姓名,学号和成绩,将其中不及格者的姓名,学号和成绩输出。
#include<iostream>
#include<string>
using namespace std;

/*define*/
string name[10];
int num[10],score[10];
int i;

int main()
{
/*可分三部走,输入,筛选,输出。现在下面先定义*/
    void input(void);
    void screen(void);

/*输入*/
    cout<<"请按顺序输入每位学生的姓名,学号和成绩。"<<endl;
    input();
    cout<<endl<<endl;
/*筛选*/  /*输出*/
	 cout<<"以下是筛选结果,其中,不及者有:"<<endl;
    screen();
  
return 0;
}

/*输入*/
void input(void)
{
	for(i=0;i<10;i++)
	{
		cout<<"第"<<i+1<<"同学的资料:";
			cin>>name[i]>>num[i]>>score[i];
		cout<<endl;
	}
}

/*筛选*/  /*输出*/
void screen(void)
{
	for (i=0;i<10;i++)
		if (score[i]<60)cout<<name[i]<<' '<<num[i]<<' '<<score[i]<<endl;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值