Board logo

標題: [隨堂測驗] 排序 (四) [打印本頁]

作者: 鄭繼威    時間: 2023-8-11 20:54     標題: [隨堂測驗] 排序 (四)

本帖最後由 鄭繼威 於 2023-8-26 16:38 編輯

假設班上有五位同學, 其成績資料如下:
string name[5]={"大雄","小叮噹","宜靜","技安","阿福"};
int score[5]={60,80,100,40,75};


試利用選擇排序法, 為成績表加上排名.
提示:由大到小,換成績的時候順便換名字

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string tmp1;
  7.     int tmp2;
  8.     string name[5]={"大雄","小叮噹","宜靜","技安","阿福"};
  9.     int score[5]={60,80,100,40,75};
  10.     cout<<"原始資料"<<endl;
  11.     cout<<"-------------"<<endl;
  12.     cout<<"姓名\t成績"<<endl;
  13.     cout<<"-------------"<<endl;
  14.     for(int i=0; i<=4; i++)
  15.            cout<<name[i]<<"\t"<<score[i]<<endl;
  16.     cout<<endl;
複製代碼
本帖隱藏的內容需要回復才可以瀏覽
  1.     cout<<"依成績排序後資料"<<endl;
  2.     cout<<"---------------------"<<endl;
  3.     cout<<"姓名\t成績\t排名"<<endl;
  4.     cout<<"---------------------"<<endl;
  5.     for(int i=0; i<=4; i++)
  6.         cout<<name[i]<<"\t"<<score[i]<<"\t"<<i+1<<endl;
  7.     cout<<endl;
  8.     system("pause");
  9.     return 0;
  10. }
複製代碼

作者: 邱品惟    時間: 2023-8-18 17:49

此帖僅作者可見
作者: 張絜晰    時間: 2023-8-18 19:32

此帖僅作者可見
作者: 黃子豪    時間: 2023-8-18 19:35

此帖僅作者可見
作者: 蔡沛倢    時間: 2023-8-18 19:38

此帖僅作者可見
作者: 何權晉    時間: 2023-8-18 19:41

此帖僅作者可見
作者: 廖秝瑜    時間: 2023-8-18 19:55

此帖僅作者可見
作者: 呂得銓    時間: 2023-8-18 19:57

此帖僅作者可見
作者: 鄭繼威    時間: 2023-8-18 19:58

此帖僅作者可見
作者: 李柏漢    時間: 2023-8-18 19:59

此帖僅作者可見
作者: 盧玄皓    時間: 2023-8-18 20:00

此帖僅作者可見
作者: 呂宗晉    時間: 2023-8-23 19:38

此帖僅作者可見
作者: 黃品禎    時間: 2023-8-26 16:49

此帖僅作者可見
作者: 朱奕祈    時間: 2024-4-8 20:55

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2