- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int tmp;
- int a[]{5,6,3,1,4,2};
- cout<<"排序前: ";
- for(int i=0; i<=5; i++)
- {
- cout<<a[i]<<" ";
- }
- cout<<endl;
- for(int i=0; i<=5; i++){
- for(int j=0; j<=5; j++){
- if(a[i]>a[j])
- {
- tmp=a[j];
- a[j]=a[i];
- a[i]=tmp;
- }
- }
- }
- cout<<"排序後: ";
- for(int i=0; i<=5; i++)
- {
- cout<<a[i]<<" ";
- }
- }
複製代碼 |