摘要: #include <iostream> using namespace std; int main(){ int a[10]={1,3,5,8,9,10,7,78,65,2}; for(int i=0;i<10;i++){ for(int j=i+1;j<10;j++){ if(a[i]>a[j]) 阅读全文
posted @ 2023-08-12 17:07 陈若麟 阅读(6) 评论(0) 推荐(0) 编辑