- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int t;
- int a[]{-1,-100,3,59,-41,94};
- cout<<"排序前: ";
- for(int i=0; i<=5; i++)
- {
- cout<<a[i]<<" ";
- }
- for(int i=0;i<=5;i++){
- for(int j=i+1;j<=5;j++){
- if(a[i]>a[j])
- {
- t=a[j];
- a[j]=a[i];
- a[i]=t;
- }
- }
- }
- cout<<endl<<"排序後: ";
- for(int i=0; i<=5; i++)
- {
- cout<<a[i]<<" ";
- }
- system("pause");
- return 0;
- }
複製代碼 |