摘要: 冒泡排序 #include<iostream> using namespace std; int main(){ int m[]={6,8,44,7,9,34,64,1}; for(int j=0;j<8;j++){ for(int i=j+1;i<8;i++){ if(m[j]>m[i]){ sw 阅读全文
posted @ 2024-04-20 14:42 王ys 阅读(34) 评论(0) 推荐(0)