Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
10497 huangshengxuan 四驱车比赛-总排名 C++ 解答错误 0 MS 244 KB 459 2023-02-25 15:10:59

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int main() { int a[8],b[8]; for(int i=0;i<8;i++){ cin>>b[i]; } for(int i=0;i<8;i++){ cin>>a[i]; } for(int i=0;i<7;i++){ for(int j=0;j<7-i;j++) if(a[j]<a[j+1]){ int temp1=0,temp2=0; temp1=a[j]; a[j]=a[j+1]; a[j+1]=temp1; temp2=b[j]; b[j]=b[j+1]; b[j+1]=temp2; } } for(int i=0;i<8;i++){ cout<<b[i]<<" "; } return 0; }


测评信息: