标签:problem for pac 结构 code 结构体 operator 空格 content
输入学生的人数,然后再输入每位学生的分数和姓名,求获得最高分数的学生的姓名。
5 87 lilei 99 hanmeimei 97 lily 96 lucy 77 jim
hanmeimei
1 /*2016年12月7日openjudge日常水题 2 ————1.9.2 By Lxzy_Zby*/ 3 #include<cstdio> 4 #include<algorithm> 5 using namespace std; 6 struct st//定义结构体 7 { 8 int s; 9 char studen[22]; 10 }; 11 struct p//排序结构体 12 { 13 14 bool operator ()(const st&a1,const st&a2) 15 { 16 return a1.s>a2.s; 17 } 18 }; 19 int main() 20 { 21 int n; 22 scanf("%d",&n); 23 st l[n]; 24 for(int i=0;i<n;i++) 25 scanf("%d %s",&l[i].s,l[i].studen); 26 sort(l,l+n,p());//排序 27 printf("%s",l[0].studen); 28 return 0; 29 30 }
标签:problem for pac 结构 code 结构体 operator 空格 content
原文地址:http://www.cnblogs.com/zby-ccsygz/p/6138784.html