本帖最後由 譚詩澐 於 2019-3-12 18:06 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int n[6]={12,57,-6,-32,0,23};
- int tmp;
- cout<<"排序前:";
- for(int i=0;i<6;i++)
- {
- cout<<n[i]<<" ";
- }
- for(int i=0;i<5;i++)
- {
- for(int j=i+1;j<6;j++)
- {
- if(n[j] < n[i])
- {
- tmp = n[i];
- n[i] = n[j];
- n[j] = tmp;
- }
- }
- }
- cout<<endl;
- cout<<"排序後: ";
- for(int i=0; i<6; i++)
- cout<<n[i]<<" ";
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |