返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score[5][3]={{30,40,33},{70,80,89},{59,59,59},{0,1,4},{100,50,89}};
  7.     cout<<"\t國文\t數學\t生物\t"<<endl;
  8.     for(int i=0;i<=4;i++)
  9.     {
  10.             cout<<i+1<<"號的成績:";
  11.             for(int e=0;e<=2;e++)
  12.             {
  13.                     cout<<score[i][e]<<"\t";
  14.             }
  15.             cout<<endl;
  16.     }
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

返回列表