PAT 甲级 1036 Boys vs Girls
发布日期:2021-07-01 03:09:05 浏览次数:2 分类:技术文章

本文共 1736 字,大约阅读时间需要 5 分钟。

1036 Boys vs Girls (25 point(s))

This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students.

Input Specification:

Each input file contains one test case. Each case contains a positive integer N, followed by N lines of student information. Each line contains a student's namegenderID and grade, separated by a space, where nameand ID are strings of no more than 10 characters with no space, gender is either F (female) or M (male), and grade is an integer between 0 and 100. It is guaranteed that all the grades are distinct.

Output Specification:

For each test case, output in 3 lines. The first line gives the name and ID of the female student with the highest grade, and the second line gives that of the male student with the lowest grade. The third line gives the difference grade​F​​−grade​M​​. If one such kind of student is missing, output Absent in the corresponding line, and output NA in the third line instead.

Sample Input 1:

3Joe M Math990112 89Mike M CS991301 100Mary F EE990830 95

Sample Output 1:

Mary EE990830Joe Math9901126

Sample Input 2:

1Jean M AA980920 60

Sample Output 2:

AbsentJean AA980920NA

经验总结:

简单的划水题啦~~~不多说勒(●′ω`●)

AC代码 

#include 
#include
int main(){ int n; char fname[20],fno[20],mname[20],mno[20],tname[20],tno[20],f; int fgrade=-1,mgrade=101,tgrade; scanf("%d",&n); for(int i=0;i
fgrade) { fgrade=tgrade; strcpy(fname,tname); strcpy(fno,tno); } } if(fgrade!=-1) printf("%s %s\n",fname,fno); else printf("Absent\n"); if(mgrade!=101) printf("%s %s\n",mname,mno); else printf("Absent\n"); if(fgrade!=-1&&mgrade!=101) printf("%d\n",fgrade-mgrade); else printf("NA\n"); return 0;}

 

转载地址:https://meteorrain.blog.csdn.net/article/details/86618768 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:PAT 甲级 1037 Magic Coupon
下一篇:PAT 甲级 1035 Password

发表评论

最新留言

感谢大佬
[***.8.128.20]2024年04月21日 20时48分46秒