- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int score[5][3]={{85,80,75},
- {90,85,88},
- {95,97,98},
- {75,85,77},
- {84,75,70}};
- cout<<"座號\t國文\t英文\t數學\t"<<endl;
- cout<<"=============================="<<endl;
- for(int i=0;i<=4;i++)
- {
- cout<<i+1<<"\t";
- for(int j=0;j<=2;j++)
- {
- cout<<score[i][j]<<"\t";
- }
- cout<<endl;
- }
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |