ming0819 @ 2022-02-27 11:17:22
#include<bits/stdc++.h>
using namespace std;
int main() {
int a,b[1000][3],sum=0,temp=0,count=0;
char c[1000][8];
cin>>a;
for(int i=0;i<a;i++){
cin>>c[i];
for(int j=0;j<3;j++){
cin>>b[i][j];
sum+=b[i][j];
}
if(sum>temp){
count=i;
temp=sum;
}
sum=0;
}
cout<<c[count]<<' '<<b[count][0]<<' '<<b[count][1]<<' '<<b[count][2];
}
by ballpoint_pen @ 2022-02-27 11:29:58
输出的时候把下一行一起输出了
by tmp_get_zip_diff @ 2022-05-03 12:56:39
@ming0819
你这里 temp 要设成 -1e9(-1000000000)
因为可能有负数
注意:
return 0 一定要写!!!