码迷,mamicode.com
首页 > 其他好文 > 详细

1036. Boys vs Girls

时间:2015-03-04 09:55:46      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:c++   pat   

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 name, gender, ID and grade, separated by a space, where name and 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 gradeF-gradeM. If one such kind of student is missing, output "Absent" in the corresponding line, and output "NA" in the third line instead.


#include <stdio.h>
#include <stdlib.h>

typedef struct
{
        char name[12],id[12];
        char gender;
        int grade;
        }Student;

int main ()
{
    int num,i;
    scanf("%d",&num);
    Student temp,female,male;
    int max=-1,min=101;
    bool f=false,m=false;
    for( i=0;i<num;i++)
    {
         scanf("%s %c %s %d",temp.name,&temp.gender,temp.id,&temp.grade);
         if( temp.gender-'F'==0)
         {
             if( temp.grade>max)
             {
                 female=temp;
                 max=temp.grade;
                 f=true;
                 }
             }
         else
         {
             if( temp.grade<min)
             {
                 male=temp;
                 min=temp.grade;
                 m=true;
                 }
             }
         }
    if( !f) printf("Absent\n");
    else printf("%s %s\n",female.name,female.id);
    if( !m) printf("Absent\n");
    else printf("%s %s\n",male.name,male.id);
    if( !f || !m) printf("NA\n");
    else 
    {
        int dif=female.grade-male.grade;
        if( dif<0) dif=dif*(-1);
        printf("%d\n",dif);
        }
    system("pause");
    return 0;
    }


1036. Boys vs Girls

标签:c++   pat   

原文地址:http://blog.csdn.net/lchinam/article/details/44044331

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!