本文共 316 字,大约阅读时间需要 1 分钟。
/NOIP2004复赛普及组第1题 不高兴的津津(枚举)/
#include <bits/stdc++.h>using namespace std;int main(){ int a[8],b[8],c[8],max=0;for(int i=1;i<=7;i++){ cin>>a[i]>>b[i];c[i]=a[i]+b[i];if(c[i]>max && c[i]>8){ max=c[i];} }for(int i=1;i<=7;i++){ if(c[i]==max) { cout<<
}
转载于:https://blog.51cto.com/1443208/2359779