本帖最後由 劉得旗 於 2014-1-24 19:40 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a[5][3]= {{ 93 , 85 , 88 },
- { 81 , 74 , 97 },
- { 80 , 85 , 70 },
- { 58 , 97 , 88 },
- { 84 , 99 , 47 }};
- 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<<a[i][j]<<"\t";
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |