返回列表 發帖

[隨堂測驗] 陣列 (八) - 成績表 2

新宣告一個一維陣列,以用來插入姓名欄位,如下圖所示。



本帖隱藏的內容需要回復才可以瀏覽

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name[5]={"王大明","李大頭","蘇小安","余美美","張醜醜"};
  7.     int  score[5][3]={{90,85,85},
  8.                      {70,75,80},
  9.                      {80,95,80},
  10.                      {70,95,75},
  11.                      {80,85,95}};
  12.    
  13.     cout<<"座號\t姓名\t\t國文\t英文\t數學"<<endl;
  14.     cout<<"============================================="<<endl;
  15.     for(int i=0; i<5; i++)
  16.     {
  17.         cout<<i+1<<"\t"<<name[i]<<"\t\t";
  18.         for(int j=0; j<3; j++)
  19.              cout<<score[i][j]<<"\t";
  20.         cout<<endl;
  21.     }
  22.     system("pause");
  23.     return 0;
  24. }
複製代碼

TOP

返回列表