- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int tmp;
- int r[4]={-32,45,5,-67};
- cout<<"排列前: ";
- for(int i=0; i<4; i++)
- cout<<r[i]<<" ";
- cout<<endl;
- for(int i=0; i<4; i++)
- {
- for(int j=i+1; j<4; j++)
- {
- if(r[j]>r[i])
- {
- tmp=r[j];
- r[j]=r[i];
- r[i]=tmp;
- }
- }
- }
- cout<<"排列後: ";
- for(int i=0; i<4; i++)
- cout<<r[i]<<" ";
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |