#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;
}