返回列表 發帖
本帖最後由 張峻瑋 於 2014-1-18 17:41 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name[5]={"王大明","李大頭","蘇小安","余美美","張醜醜"};
  7.     int a[5][3]={{ 90 , 95 , 80 },
  8.                     { 80 , 70 , 90 },
  9.                     { 90 , 85 , 90 },
  10.                     { 95 , 95 , 80 },
  11.                     { 80 , 90 , 90 }};
  12.     cout<<"座號\t姓名\t\t國文\t英文\t數學\t"<<endl;
  13.     cout<<"============================================"<<endl;               
  14.     for(int i=0;i<=4;i++)
  15.     {
  16.         cout<<i+1<<"\t";
  17.         cout<<name[i]<<"\t\t";     
  18.         for(int j=0;j<=2;j++)  
  19.         {
  20.             cout<<a[i][j]<<"\t";
  21.         }
  22.         cout<<endl;
  23.     }                        
  24.     system("pause");
  25.     return 0;   
  26. }
複製代碼

TOP

返回列表