返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     string name[5]={"大雄","小叮噹","宜靜","技安","阿福"};
  8.     int score[5]={60,80,100,40,75};
  9.     int place[5]={1,2,3,4,5};
  10.     cout<<"原始資料"<<endl;
  11.     cout<<"-------------"<<endl;
  12.     cout<<"姓名     成績"<<endl;
  13.     cout<<"-------------"<<endl;

  14.     for(int i=0; i<5; i++)
  15.     {
  16.         cout<<name[i]<<"     "<<score[i]<<endl;
  17.     }
  18.     for(int i=0; i<5; i++)
  19.     {
  20.         for(int j=0; j<5; j++)
  21.         {
  22.             if(score[i]>score[j])
  23.             {
  24.                 x=score[j];
  25.                 score[j]=score[i];
  26.                 score[i]=x;
  27.             }
  28.         }

  29.     }
  30.     for(int i=0; i<5; i++)
  31.     {
  32.         for(int j=0; j<5; j++)
  33.         {
  34.             if(score[i]>score[j])
  35.             {
  36.                 int y=j;
  37.                 name[y]=name[j];
  38.                 name[j]=name[i];
  39.                 name[i]=name[y];
  40.             }
  41.         }

  42.     }
  43.     cout<<endl<<"依成績排序後: "<<endl;
  44.     cout<<"----------------------"<<endl;
  45.     cout<<"姓名     成績     排名"<<endl;
  46.     cout<<"----------------------"<<endl;

  47.     for(int i=0; i<5; i++)
  48.     {
  49.         cout<<name[i]<<"     "<<score[i]<<"     "<<place[i]<<endl;
  50.     }

  51. }
複製代碼

TOP

返回列表