一本通1111
#include<bits/stdc++.h>
using namespace std;
int a[8][3]= {0},s[8]= {0},z[8]= {0},maxn;
int main() {
//freopen(".in","r",stdin);
//freopen(".out","w",stdout);
for(int i=1; i<=7; i++)
cin>>a[i][1]>>a[i][2];
for(int i=1; i<=7; i++) {
s[i]=a[i][1]+a[i][2];
z[i]=s[i];
}
for(int i=1; i<=7; i++)
for(int j=i+1; j<=7; j++)
if(s[i]>s[j])
swap(s[i],s[j]);
maxn=s[7];
for(int i=1; i<=7; i++)
if(maxn==z[i]) {
cout<<i<<endl;
break;
}
return 0;
//fclose(stdin);
//fclose(stdout);
}
不存在十全十美的文章 如同不存在彻头彻尾的绝望