返回列表 發帖

二維陣列-成績表

//利用二維陣列, 試做一個包含五位同學, 各三組分數的成績表格.
  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.    
  11.     for(int i=0;i<5;i++)
  12.     {
  13.       cout <<"第"<<i+1<<"位同學的國,英,數 成績為:";
  14.       for(int j=0;j<3;j++)
  15.       {
  16.         cout << Score[i][j] <<" ";
  17.       }
  18.       cout << endl;        
  19.     }
  20.   
  21.    
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表