- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a[5],tmp;
- for(int i=0;i<5;i++)
- {
- cout<<"請輸入第"<<i+1<<"個數:";
- cin>>a[i];
- }
- cout<<"排序前:";
- for(int i=0;i<5;i++)
- {
- cout<<a[i]<<" ";
- }
- for(int i=0;i<5-1;i++)
- {
- for(int j=0;j<5-i-1;j++)
- {
- if(a[j]>a[j+1])
- {
- tmp=a[j];
- a[j]=a[j+1];
- a[j+1]=tmp;
- }
- }
- }
- cout<<endl;
- cout<<"排序後:";
- for(int i=0;i<5;i++)
- {
- cout<<a[i]<<" ";
- }
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |