- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int s=0;
- int n[]={12,57,-6,-32,0,23};
- cout<<"排序前:";
- for(int i=0;i<=5;i++){
- cout<<n[i]<<" ";
- }
- cout<<endl<<endl;
- for(int j=0;j<5;j++){
- for(int k=j+1;k<=5;k++){
- if(n[k]<n[j]){
- s=n[k];
- n[k]=n[j];
- n[j]=s;
- }
- }
- }
- cout<<"排序後:";
- for(int i=0;i<=5;i++){
- cout<<n[i]<<" ";
- }
- system("pause");
- return 0;
- }
複製代碼 |