返回列表 發帖

[作業] 陣列 (九) - 成績表 3

新增平均欄位。



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

  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},{70,75,80},{80,95,80},{70,95,75},{80,85,95}};
  8.     cout<<"座號\t姓名\t\t國文\t英文\t數學\t平均"<<endl;
  9.     cout<<"====================================================="<<endl;
  10.     for(int i=0; i<5; i++)
  11.     {
  12.          float number=0;
  13.          cout<<i+1<<"\t"<<name[i]<<"\t\t";
  14.          for(int j=0; j<3; j++){
  15.               cout<<score[i][j]<<"\t";
  16.               number+=score[i][j];
  17.          }
  18.          cout<<number/3;
  19.          cout<<endl;
  20.     }
  21.     system("pause");
  22.     return 0;
  23. }
複製代碼

TOP

返回列表