NYOJ 60谁获得了最高奖学金

原题目链接

判断每种情况的获得奖金就行,水一下~

#include <iostream>
#include <string>
using namespace std;

struct student
{
    string name;
    int argEnd;
    int argCls;
    char isLeader;
    char isWester;
    int num;

    int getAward()
    {
        int res = 0;
        if(argEnd>80 && num>=1)
            res+=8000;
        if(argEnd>85 && argCls>80)
            res+=4000;
        if(argEnd>90)
            res+=2000;
        if(argEnd>85 && isWester=='Y')
            res+=1000;
        if(argCls>80 && isLeader=='Y')
            res+=850;

        return res;
    }
};

int main()
{
    student stu[110];
    int t,n;
    int res,all,maxid;

    cin>>t;

    while(t--){
        cin>>n;
        res=all=maxid=0;
        for(int i=0;i<n;i++){
            cin>>stu[i].name>>stu[i].argEnd>>stu[i].argCls>>stu[i].isLeader>>stu[i].isWester>>stu[i].num;
            int price = stu[i].getAward();
            if(price>res){
                maxid = i;
                res = price;
            }
            all+=price;
        }
        cout<<stu[maxid].name<<endl<<res<<endl<<all<<endl;
    }


    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值