- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int score[5][3]={{99,98,97},{96,95,94},{93,92,91},{90,89,88},{87,86,85}};
- cout<<"座號\t國文\t英文\t數學"<<endl;
- cout<<"-----------------------------"<<endl;
- for (int i=0; i<5; i++)
- {
- cout<<i+1<<"\t";
- for (int j=0; j<3; j++)
- {
- cout<<score[i][j]<<"\t";
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |