2024年4月5日
摘要:
#include <iostream> using namespace std; int main(){ int t,a[10]={1,2,3,4,5,6,7,8,9,10}; for(int i=1;i<=10;i++){ for(int j=i+1;j<=10;j++){ if(a[i]>a[j 阅读全文
摘要:
#include <iostream> using namespace std; int main(){ int a[]={1,3,5,8,9,10,7,34,89,46}; int m=0; for(int i=1;i<10;i++){ for(int j=i;j>0;j--){ if(a[j]< 阅读全文