返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. int main(){
  4.     int n[5][3]={{90,85,85},
  5.                  {70,75,80},
  6.                  {80,95,80},
  7.                  {70,95,75},
  8.                  {80,85,95}};

  9.     cout<<"座號\t國文\t英文\t數學\n";  
  10.     cout<<"================================\n";

  11.     for(int i=0; i<5; i++)
  12.     {
  13.          cout<<i+1<<"\t";
  14.          for(int j=0; j<3; j++)
  15.          {
  16.               cout<<n[i][j]<<"\t";   
  17.          }   
  18.          cout<<endl;
  19.     }

  20.     system("pause");
  21.     return 0;
  22. }
複製代碼

TOP

返回列表