本帖最後由 羅暐傑 於 2023-4-8 14:51 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main(){
- int n[]={12,57,-6,-32,0,23,4};
- int tmp;
-
- cout<<"排序前: ";
- for(int i=0; i<7; i++){
- cout<<n[i]<<", ";
- }
- cout<<endl;
-
- for(int j=0;j<=5;j++){
- for(int k=j+1;k<=6;k++){
- if(n[k]<n[j]){
-
- tmp=n[k];
- n[k]=n[j];
- n[j]=tmp;
- }
- }
- }
- cout<<"排序後: ";
- for(int i=0; i<7; i++)
- {
- cout<<n[i]<<" ";
- }
- cout<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |