標題:
排序 (四)
[打印本頁]
作者:
陳曜誌
時間:
2024-8-5 22:51
標題:
排序 (四)
假設班上有五位同學, 其成績資料如下:
string name[5]={"大雄","小叮噹","宜靜","技安","阿福"};
int score[5]={60,80,100,40,75};
試利用選擇排序法, 為成績表加上排名.
本帖隱藏的內容需要回復才可以瀏覽
作者:
李昱辰
時間:
2024-8-6 21:06
#include<iostream>
using namespace std;
int main()
{
cout<<"原始資料"<<endl;
cout<<"-------------"<<endl;
cout<<"姓名\t成績"<<endl;
cout<<"-------------"<<endl;
string name[5]={"大雄","小叮噹","宜靜","技安","阿福"};
int score[5]={60,80,100,40,75};
for(int i=0;i<5;i++)
{
cout<<name[i]<<"\t"<<score[i]<<endl;
}
cout<<"依成績排序後資料"<<endl;
cout<<"------------------------"<<endl;
cout<<"姓名\t成績\t排名"<<endl;
cout<<"------------------------"<<endl;
for(int i=0;i<4;i++)
{
for(int j=i+1;j<5;j++)
{
if(score[j]>score[i])
{
int tmp1=score[j];
score[j]=score[i];
score[i]=tmp1;
string tmp2=name[j];
name[j]=name[i];
name[i]=tmp2;
}
}
}
for(int i=0;i<5;i++)
{
cout<<name[i]<<"\t"<<score[i]<<"\t"<<i+1<<endl;
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2