大佬求教!100分但素为啥最后一个是WA啊
查看原帖
大佬求教!100分但素为啥最后一个是WA啊
1523111
MichelleZheng楼主2025/1/18 16:43
#include<iostream>
using namespace std;
int main(){
int m[7],n[7],h[7];
int hmax=0;
for(int i=0;i<7;i++){
cin>>m[i]>>n[i];
h[i]=m[i]+n[i];
if(hmax<h[i]){
hmax=h[i];
}
}
if(hmax<8) cout<<0;
else{
for(int i=0;i<7;i++){
if(h[i]==hmax){
cout<<i+1;
break;
}
}
}
return 0;
}
2025/1/18 16:43
加载中...