氣泡排序1

fushuxuan1發表於2024-04-05
#include <bits/stdc++.h>
using namespace std;
int main(){ int a[]={7,4,8,9,2}; for(int i=0;i<5;i++){ for(int j=i+1;j<5;j++){ if(a[i]>a[j]){ swap(a[i],a[j]); } } } for(int i=0;i<5;i++){ cout<<a[i]<<" "; } }

  

相關文章