標題:
排序 (一)
[打印本頁]
作者:
方浩葦
時間:
2024-8-17 11:42
標題:
排序 (一)
利用
選擇排序法
, 將任意6個整數, 由小而大排列出來.
本帖隱藏的內容需要回復才可以瀏覽
作者:
鄭豊翰
時間:
2024-9-21 10:48
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
int n[6] = {8, -95, 321, 5, 0, -18};
cout << "排序前: ";
for (int g = 0; g < 6; g++) {
cout << n[g] << " ";
}
cout << endl;
for (int i = 0; i < 6; i++) {
for (int j = 0; j < 5 - i; j++) {
if (n[j] > n[j + 1]) {
int temp = n[j];
n[j] = n[j + 1];
n[j + 1] = temp;
}
}
}
cout << "排序後: ";
for (int g = 0; g < 6; g++) {
cout << n[g] << " ";
}
cout << endl;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2