PAT Advanced 1036. Boys vs Girls (25) (C語言實(shí)現(xiàn))

我的PAT系列文章更新重心已移至Github,歡迎來看PAT題解的小伙伴請(qǐng)到Github Pages瀏覽最新內(nèi)容(本篇文章鏈接)。此處文章目前已更新至與Github Pages同步。歡迎star我的repo。

題目

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
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:

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

Sample Output 1:

Mary EE990830
Joe Math990112
6

Sample Input 2:

1
Jean M AA980920 60

Sample Output 2:

Absent
Jean AA980920
NA

思路

記錄最大和最小,應(yīng)該無需講解了。

代碼

最新代碼@github,歡迎交流

#include <stdio.h>

typedef struct student {
    char name[11];
    char gender;
    char ID[11];
} Student;

int main()
{
    int N, grade, gradeF = -1, gradeM = 101;
    Student students[101] = {0}, s;

    scanf("%d", &N);
    for(int i = 0; i < N; i++)
    {
        scanf("%s %c %s %d", s.name, &s.gender, s.ID, &grade);
        students[grade] = s;
        if(s.gender == 'F')
            gradeF = grade > gradeF ? grade : gradeF;
        else
            gradeM = grade < gradeM ? grade : gradeM;
    }

    if(gradeF != -1)
        printf("%s %s\n", students[gradeF].name, students[gradeF].ID);
    else
        printf("Absent\n");

    if(gradeM != 101)
        printf("%s %s\n", students[gradeM].name, students[gradeM].ID);
    else
        printf("Absent\n");

    if(gradeM == 101 || gradeF == -1)
        printf("NA");
    else
        printf("%d", gradeF - gradeM);

    return 0;
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容