返回列表 發帖

二維陣列-成績表 (三)

另外加上平均分數計算
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     //利用二維陣列, 試做一個包含五位同學, 各三組分數的成績表格.
  7.    
  8.     //國英數
  9.     int Score [5][3] ={{100,10,40},{47,53,87},{98,34,88},{100,58,36},{47,58,30}};
  10.     int Total =0;
  11.     for(int i=0;i<5;i++)
  12.     {
  13.       cout <<"第"<<i+1<<"位同學的國,英,數 成績為:";
  14.       for(int j=0;j<3;j++)
  15.       {
  16.         Total = Total+ Score[i][j];
  17.         cout << Score[i][j] <<" ";
  18.       }
  19.       
  20.       cout << "總分為:" << Total << "平均:" <<Total/3 <<endl;      
  21.       Total =0;  
  22.     }
  23.   
  24.    
  25.     system("pause");
  26.     return 0;   
  27. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表