c++学习心得(六) 数组(5)二维数组应用案例输出成绩

#include <iostream>
#include <string>
using namespace std;

int main()
{	
	int scores[3][3] =
	{
		{100,100,100},
		{90,50,100},
		{60,70,80}
	};
	cout << "    语文    " << "数学    " << "英语    " << endl;
	for (int i = 0; i < 3; i++)
	{
		if (i == 0)
		{
			cout << "张三";
		}
		else if (i == 1)
		{
			cout << "李四";
		}
		else if(i == 2)
		{
		cout << "王五";
		}
		for (int j = 0; j < 3; j++)
		{
			{
				cout << scores[i][j] <<"     ";
			}
		}
		cout << endl;
	}
	
	system("pause");
	return 0;
}

上一篇:【python】实验1项目3 文件的读写,编码和解码


下一篇:二、 十八、继续使用scores表,使用filter筛选出所有2年级的学生,再用带条件的sorted对其按语文分数从低到高排序