返回列表 發帖
本帖最後由 洪榮辰 於 2024-8-17 13:32 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string n[]={"大雄","小叮噹","宜靜","技安","阿福"};
  7.     int s[]={60,80,100,40,75};
  8.     int x[]={1,2,3,4,5};
  9.     cout<<"原始資料"<<endl;
  10.     cout<<"-------------"<<endl;
  11.     cout<<"姓名\t成績"<<endl;
  12.     cout<<"-------------"<<endl;
  13.     for(int i=0; i<=4; i++)
  14.         {
  15.         cout<<n[i]<<"\t"<<s[i]<<endl;
  16.         }
  17.         for(int i=0; i<=4; i++)
  18.         {
  19.            for(int j=0; j<=4; j++)
  20.            {
  21.             if(s[i]>s[j])
  22.                 {
  23.                 int y;
  24.                 string z;
  25.                 y=s[i];
  26.                 s[i]=s[j];
  27.                 s[j]=y;
  28.                 z=n[i];
  29.                 n[i]=n[j];
  30.                 n[j]=z;
  31.                 }
  32.             }
  33.         }
  34.     cout<<endl<<"依成績排序後資料"<<endl;
  35.     cout<<"---------------------"<<endl;
  36.     cout<<"姓名    成績    排名"<<endl;
  37.     cout<<"---------------------"<<endl;
  38.     for(int i=0; i<5; i++)
  39.     cout<<n[i]<<"\t"<<s[i]<<"\t"<<x[i]<<endl;
  40.     system("pause");
  41.     return 0;
  42. }
複製代碼

TOP

返回列表