本帖最後由 蔡季樺 於 2016-8-6 10:29 編輯
 - #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a[8],b[8],tmp=0;
- for(int i=0;i<8;i++)
- {
- cout<<"請輸入第"<<i+1<<"個數:";
- cin>>a[i];
- }
- cout<<"排序前:";
- for(int i=0;i<8;i++)
- {
- cout<<a[i]<<" ";
- }
- for(int i=0;i<8;i++)
- {
- tmp=a[i];
- for(int j=i;j<8;j++)
- {
- if(a[j]<tmp)
- {
- tmp=a[j];
- a[j]=a[i];
- a[i]=tmp;
- }
- }
- b[i]=tmp;
- }
- cout<<endl;
- cout<<"排序後:";
- for(int i=0;i<8;i++)
- {
- cout<<b[i]<<" ";
- }
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |