本帖最後由 林少謙 於 2024-8-3 16:08 編輯
- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- int x;
- int a[]{5,6,3,1,4,2};
- cout<<"排序前: ";
- for(int i=0; i<=5; i++)
- {
- cout<<a[i]<<" ";
- }
- for(int i=0; i<=5; i++)
- {
- for(int j=0; j<=5; j++)
- {
- if(a[i]>a[j])
- {
- x=a[j];
- a[j]=a[i];
- a[i]=x;
- }
- }
- }
- cout<<endl<<"排序後: ";
- for(int i=0; i<=5; i++)
- {
- cout<<a[i]<<" ";
- }
- }
複製代碼 |