本帖最後由 李泳霖 於 2024-1-24 13:33 編輯
承上題,新增平均欄位。
- #include<iostream>
- #include<ctime>
- using namespace std;
- int main()
- {
- string name[5]= {"王大明","李大頭","蘇小安","余美美","張醜醜"};
- int score[5][3]=
- {
- {90,85,85},
- {70,75,80},
- {80,95,80},
- {70,95,75},
- {80,85,95}
- };
- cout<<"座號\t姓名\t\t國文\t英文\t數學\t平均"<<endl;
- cout<<"================================================"<<endl;
- for(int i=0; i<5; i++)
- {
- cout<<i+1<<"\t"<<name[i]<<"\t\t";
- for(int j=0; j<3; j++)
- {
- cout<<score[i][j]<<"\t";
-
- }
- cout<<(score[i][0]+score[i][1]+score[i][2])/3.0;
- cout<<endl;
- }
- return 0;
- }
- /*
- i++ -->當下的i+1在指定給自己存放
- i+1-->當下的i加1而已
- */
複製代碼 |