標題:
[作業] 排序 (四)
[打印本頁]
作者:
鄭繼威
時間:
2023-2-1 02:30
標題:
[作業] 排序 (四)
本帖最後由 鄭繼威 於 2023-2-15 20:01 編輯
假設班上有五位同學, 其成績資料如下:
string name[5]={"大雄","小叮噹","宜靜","技安","阿福"};
int score[5]={60,80,100,40,75};
試利用選擇排序法, 為成績表加上排名.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string tmp1;
int tmp2;
string name[5]={"大雄","小叮噹","宜靜","技安","阿福"};
int score[5]={60,80,100,40,75};
cout<<"原始資料"<<endl;
cout<<"-------------"<<endl;
cout<<"姓名\t成績"<<endl;
cout<<"-------------"<<endl;
複製代碼
本帖隱藏的內容需要積分高於 1 才可瀏覽
cout<<"依成績排序後資料"<<endl;
cout<<"---------------------"<<endl;
cout<<"姓名\t成績\t排名"<<endl;
cout<<"---------------------"<<endl;
for(int i=0; i<=4; i++)
cout<<name[i]<<"\t"<<score[i]<<"\t"<<i+1<<endl;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2023-2-11 23:06
此帖僅作者可見
作者:
林劭杰
時間:
2023-2-15 20:05
此帖僅作者可見
作者:
林劭澧
時間:
2023-2-15 20:07
此帖僅作者可見
作者:
李彣
時間:
2023-2-15 20:12
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2