標題:
排序 (一)
[打印本頁]
作者:
陳曜誌
時間:
2024-8-5 22:49
標題:
排序 (一)
本帖最後由 陳曜誌 於 2024-8-6 14:39 編輯
利用
選擇排序法
, 將任意6個整數, 由小而大排列出來.
本帖隱藏的內容需要回復才可以瀏覽
[attach]19337[/attach]
[attach]19338[/attach]
作者:
陳曜誌
時間:
2024-8-6 14:46
本帖隱藏的內容需要回復才可以瀏覽
作者:
李昱辰
時間:
2024-8-6 19:37
#include<iostream>
using namespace std;
int main()
{
int s[6]={12,57,-6,-32,0,23};
cout<<"排序前:";
for(int i=0;i<6;i++)
cout<<s[i]<<" ";
for(int i=0;i<6;i++)
{
for(int j=i+1;j<6;j++)
{
if(s[i]>s[j])
{
int tmp=s[i];
s[i]=s[j];
s[j]=tmp;
}
}
}
cout<<endl<<endl;
cout<<"排序後:";
for(int i=0;i<6;i++)
{
cout<<s[i]<<" ";
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2