摘要: 1 #include 2 #include 3 using namespace std; 4 struct team 5 { 6 int a; 7 int b; 8 }t[10]; 9 bool cmp(team a, team b) 10 { 11 if(a.a==b.a) 12 return a.b > b.b;//如果第一个... 阅读全文
posted @ 2019-01-24 17:19 罗罗诺亚_honor 阅读(591) 评论(2) 推荐(0) 编辑