题解
2023-03-18 17:52:02
发布于:上海
51阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,max=-1,max_day=-1;
for(int i=1;i<=7;i++){
cin>>a>>b;
if(a+b>8&&a+b>max){
max=a+b;
max_day=i;
}
}
if(max_day==-1){
cout<<0;
}else{
cout<<max_day<<endl;
}
return 0;
}
这里空空如也
有帮助,赞一个