本帖最後由 tonyh 於 2014-6-7 16:29 編輯
利用氣泡排序法, 將任意6個整數, 由小而大排列出來.
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int tmp;
- int n[6]={0,-33,49,-19,7,22};
- cout<<"排序前: ";
- for(int i=0; i<6; i++)
- cout<<n[i]<<" ";
- for(int i=0; i<5; i++)
- {
- for(int j=i+1; j<6; j++)
- {
- if(n[j]<n[i])
- {
- tmp=n[i];
- n[i]=n[j];
- n[j]=tmp;
- }
- }
- }
- cout<<endl;
- cout<<"排序後: ";
- for(int i=0; i<6; i++)
- cout<<n[i]<<" ";
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |