返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {      
  6.     int n[3][2]={{54,87},
  7.     {78,74},
  8.     {54,98}};
  9.    
  10.     cout<<"座號\t國文\t英文\t愛文"<<endl;
  11.     cout<<"============================"<<endl;
  12.    
  13.     for(int i=0;i<2;i++)
  14.     {
  15.            cout<<i+1<<"\t";
  16.         for(int j=0;j<3;j++)
  17.         
  18.     cout<<n[i][j]<<"\t";
  19.        cout<<endl;
  20.       }
  21.     system("pause");
  22.     return 0;
  23. }
複製代碼

TOP

返回列表