題意
統計關于jinjin的不開心天數中最不開心的那一天。。。
吐槽
最近感覺可能是水準上升了。。。做這種題感覺太沒意思了。。。
代碼
#include <iostream>
using namespace std;
struct pos{
int a;
int b;
}P[];
int main(){
while(){
int n;
cin>>n;
int max = ,temp =;
for(int i=;i<n;i++){
cin>>P[i].a>>P[i].b;
int count = P[i].a+P[i].b;
if(count>){
if(count>max){
max = count;
temp = i+;
}
}
}
cout<<temp<<endl;
}
return ;
}