今天,写一到结构体的语法题,搞了好久,33分钟,语法太不熟练了。
#include<bits/stdc++.h>
using namespace std;
struct Team{
int w,c,t;
};
bool cmp(Team& x,Team& y){
if(x.w!=y.w)return x.w>y.w;
if(x.c!=y.c)return x.c>y.c;
return x.t<y.t;
}
int main()
{
int a,b,c,d,e,f;
cin>>a>>b>>c;
Team teama={a,b,c};
cin>>d>>e>>f;
Team teamb={d,e,f};
if(cmp(teama,teamb))cout<<'A';
else cout<<'B';
return 0;
}
我记得还有数组的,等看到了再加上。