PAT (Advanced Level) Practise 1036

本文介绍了一个编程问题的解决方法,该问题是关于PAT高级水平竞赛中男性与女性学生最低与最高分数之间的差异计算。通过输入学生的姓名、性别、课程及分数,程序能够找出分数最高的女性学生和分数最低的男性学生,并计算两者分数之差。

PAT (Advanced Level) Practise 1036

1036. Boys vs Girls (25)

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.

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

编程实现

#include <stdio.h>
#include <string.h>

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

void copy_record(Student *s1, Student *s2) 
{
    strcpy(s1->name, s2->name);
    strcpy(s1->course, s2->course);
    s1->gender = s2->gender;
    s1->grade = s2->grade;
}

int main(void)
{
    Student highest_female, lowest_male, input;
    int has_lowest_male = 0, has_highest_female = 0;
    int n;

    scanf("%d", &n);
    while ( n-- ) {
        scanf("%s %c %s %d", input.name, 
            &input.gender, input.course, 
            &input.grade);
        if ( (!has_highest_female && input.gender == 'F') || 
            (has_highest_female && input.gender == 'F' && 
                 input.grade > highest_female.grade) ) {
            copy_record(&highest_female, &input);
            has_highest_female = 1;
        }
        else if ( (!has_lowest_male && input.gender == 'M') ||
            (has_lowest_male && input.gender == 'M' &&
                input.grade < lowest_male.grade) )  {   
            copy_record(&lowest_male, &input);
            has_lowest_male = 1;
        }
    }
    if ( has_highest_female && has_lowest_male ) {
        printf("%s %s\n", highest_female.name, highest_female.course);
        printf("%s %s\n", lowest_male.name, lowest_male.course);
        printf("%d\n", highest_female.grade - lowest_male.grade);
    } else if ( has_highest_female ) {
        printf("%s %s\n", highest_female.name, highest_female.course);
        printf("Absent\n");
        printf("NA\n");
    } else {
        printf("Absent\n");
        printf("%s %s\n", lowest_male.name, lowest_male.course);
        printf("NA\n");
    }
    return 0;
}
先看效果: https://renmaiwang.cn/s/jkhfz Hue系列产品将具备高度的个性化定制能力,并且借助内置红、蓝、绿三原色LED的灯泡,能够混合生成1600万种同色彩的灯光。 整个操作流程完全由安装于iPhone上的应用程序进行管理。 这一创新举措为智能照明控制领域带来了新的启示,国内相关领域的从业者也积极投身于相关研究。 鉴于Hue产品采用WiFi无线连接方式,而国内WiFi网络尚未全面覆盖,本研究选择应用更为普及的蓝牙技术,通过手机蓝牙与单片机进行数据交互,进而产生可调节占空比的PWM信号,以此来控制LED驱动电路,实现LED的调光功能以及DIY调色方案。 本文重点阐述了一种基于手机蓝牙通信的LED灯设计方案,该方案受到飞利浦Hue智能灯泡的启发,但考虑到国内WiFi网络的覆盖限制,故而选用更为通用的蓝牙技术。 以下为相关技术细节的详尽介绍:1. **智能照明控制系统**:智能照明控制系统允许用户借助手机应用程序实现远程控制照明设备,提供个性化的调光及色彩调整功能。 飞利浦Hue作为行业领先者,通过红、蓝、绿三原色LED的混合,能够呈现1600万种颜色,实现了全面的定制化体验。 2. **蓝牙通信技术**:蓝牙技术是一种低成本、短距离的无线传输方案,工作于2.4GHz ISM频段,具备即插即用和强抗干扰能力。 蓝牙协议栈由硬件层和软件层构成,提供通用访问Profile、服务发现应用Profile以及串口Profiles等丰富功能,确保同设备间的良好互操作性。 3. **脉冲宽度调制调光**:脉冲宽度调制(PWM)是一种高效能的调光方式,通过调节脉冲宽度来控制LED的亮度。 当PWM频率超过200Hz时,人眼无法察觉明显的闪烁现象。 占空比指的...
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值