本帖最後由 陳品肇 於 2019-5-18 14:26 編輯
利用氣泡排序法, 將任意6個整數, 由小而大排列出來
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int n[6] = {12,57,-6,-32,0,23};
- cout<<"排序前: ";
- for(int i=0;i<6;i++)
- {
- cout<<n[i]<<" ";
- }
- cout<<endl;
-
- for(int i=0;i<5;i++) //把每一個 0
- {
- for(int j=i+1;j<6;j++) //1
- {
- if(n[j] < n[i])
- {
- int tmp;
- tmp = n[i];
- n[i] = n[j];
- n[j] = tmp;
- }
- }
- }
-
- cout<<"排序後: ";
- for(int i=0;i<6;i++)
- {
- cout<<n[i]<<" ";
- }
- cout<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |