返回列表 發帖

[作業] 陣列 (五) - 成績表 (一)

本帖最後由 張翼安 於 2016-3-12 11:17 編輯

利用二維陣列, 試做一個包含五位同學, 各三組分數的成績表格.
表格的形式如下:

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string subject[4]={"座號","國文","英文","數學"};
  7.     int point[5][3]={{90,85,85},
  8.                  {70,75,80},
  9.                  {80,95,80},
  10.                  {70,95,75},
  11.                  {80,85,95}};
  12.     for(int i=0; i<=3; i++)
  13.     {
  14.         cout<<subject[i]<<"\t";
  15.     }
  16.     cout<<endl;
  17.     cout<<"=============================="<<endl;
  18.     for(int j=0; j<=4; j++)
  19.     {
  20.         cout<<j+1<<"\t";
  21.         for(int k=0; k<=2; k++)
  22.         {
  23.              cout<<point[j][k]<<"\t";
  24.         }
  25.         cout<<endl;            
  26.     }
  27.     cout<<endl;
  28.     system("pause");
  29.     return 0;   
  30. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string english[3]={"國語","英語","數學"};
  7.         cout<<"座號 ";   
  8.         for(int a=0;a<3;a++)
  9.         {
  10.                 cout<<english[a]<<"\t";     
  11.         }   
  12.         cout<<endl;
  13.         cout<<"==============================="<<endl;        
  14.     int number[5][3]={{90,85,85},{70,75,80},{80,95,80},{70,95,75},{80,85,95}};
  15.         for(int x=0;x<5;x++)
  16.         {
  17.                 cout<<"  "<<x+1<<"  ";
  18.                 for(int y=0;y<3;y++)
  19.                 {
  20.                     cout<<"  "<<number[x][y]<<"\t";
  21.                 }
  22.          cout<<endl;
  23.          }
  24.      cout<<endl;
  25.      system("pause");
  26.      return 0;   
  27. }                           
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string subject[4]={"座號","國文","英文","數學"};
  7.     int point[5][3]={{90,85,85},
  8.                  {70,75,80},
  9.                  {80,95,80},
  10.                  {70,95,75},
  11.                  {80,85,95}};
  12.     for(int i=0; i<=3; i++)
  13.     {
  14.         cout<<subject[i]<<"\t";
  15.     }
  16.     cout<<endl;
  17.     cout<<"=============================="<<endl;
  18.     for(int j=0; j<=4; j++)
  19.     {
  20.         cout<<j+1<<"\t";
  21.         for(int k=0; k<=2; k++)
  22.         {
  23.              cout<<point[j][k]<<"\t";
  24.         }
  25.         cout<<endl;            
  26.     }
  27.     cout<<endl;
  28.     system("pause");
  29.     return 0;   
  30. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string subject[4]={"座號","國文","英文","數學"};
  7.     int point[5][3]={{90,85,85},
  8.                  {70,75,80},
  9.                  {80,95,80},
  10.                  {70,95,75},
  11.                  {80,85,95}};
  12.     for(int a=0; a<=3; a++)
  13.     {
  14.         cout<<subject[a]<<"\t";
  15.     }
  16.     cout<<endl;
  17.     cout<<"=============================="<<endl;
  18.     for(int t=0; t<=4; t++)
  19.     {
  20.         cout<<t+1<<"\t";
  21.         for(int x=0; x<=2; x++)
  22.         {
  23.              cout<<point[t][x]<<"\t";
  24.         }
  25.         cout<<endl;            
  26.     }
  27.     cout<<endl;
  28.     system("pause");
  29.     return 0;   
  30. }                           
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     string subject[4]={"座號","國語","數學","英文"};
  7.     int point[5][3]={{90,100,85},
  8.                      {90,100,85},
  9.                      {90,100,85},
  10.                      {90,100,85},
  11.                      {90,100,85}};      
  12.     for (int a=0;a<4;a++)
  13.     {
  14.        cout<<subject[a]<<"\t";
  15.      }
  16.      cout<<endl;
  17.      cout<<"================================"<<endl;
  18.     system("pause");
  19.     return 0;   
  20. }
複製代碼

TOP

返回列表