標題:
排序 (四)
[打印本頁]
作者:
李泳霖
時間:
2022-8-5 15:20
標題:
排序 (四)
本帖最後由 李泳霖 於 2022-8-12 19:19 編輯
假設班上有五位同學, 其成績資料如下:
string name[5]={"大雄","小叮噹","宜靜","技安","阿福"};
int score[5]={60,80,100,40,75};
試利用選擇排序法, 為成績表加上排名.
#include<iostream>
#include<cstdlib>
using namespace std;
int main() //主函式
{
string name[5]={"大雄","小叮噹","宜靜","技安","阿福"};
int score[5]={60,80,100,40,75};
int tmp;
cout<<"原始資料"<<endl;
cout<<"-------------"<<endl;
cout<<"姓名\t成績"<<endl;
cout<<"-------------"<<endl;
for(int i=0;i<=4;i++)
{
cout<<name[i]<<"\t"<<score[i]<<endl;
}
for(int i=0;i<4;i++)
{
for(int j=i+1;j<5;j++)
{
if(score[i]<score[j])
{
tmp=score[i];
score[i]=score[j];
score[j]=tmp;
}
}
}
cout<<endl<<"依成績排序後資料"<<endl;
cout<<"-------------"<<endl;
cout<<"姓名\t成績\t排名"<<endl;
for(int i=0;i<=4;i++)
{
cout<<name[i]<<"\t"<<score[i]<<"\t"<<i+1<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李泳霖
時間:
2022-8-5 15:20
此帖僅作者可見
作者:
許志捷
時間:
2022-8-5 19:42
此帖僅作者可見
作者:
賴聿均
時間:
2022-8-5 20:44
此帖僅作者可見
作者:
陳柏融
時間:
2022-8-5 20:53
此帖僅作者可見
作者:
尤爾璿
時間:
2022-8-5 20:53
此帖僅作者可見
作者:
蘇允翎
時間:
2022-8-5 20:53
此帖僅作者可見
作者:
洪浚恩
時間:
2022-8-5 20:53
此帖僅作者可見
作者:
尤爾帆
時間:
2022-8-5 20:53
此帖僅作者可見
作者:
呂宏晏
時間:
2022-8-6 17:26
此帖僅作者可見
作者:
郭又瑄
時間:
2022-8-7 15:01
此帖僅作者可見
作者:
陳柏融
時間:
2022-8-8 18:44
此帖僅作者可見
作者:
吳侑諶
時間:
2022-8-11 21:35
此帖僅作者可見
作者:
洪浚恩
時間:
2022-8-12 19:34
此帖僅作者可見
作者:
陳柏融
時間:
2022-8-12 19:35
此帖僅作者可見
作者:
蘇允翎
時間:
2022-8-12 19:35
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2