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

1004 成绩排名 (20 分)

时间:2019-04-16 01:05:02      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:span   --   ace   cout   nbsp   min   struct   while   main   

#include <iostream>
using namespace std;
struct Stu
{
    int score;
    string id, num;
}stu;
int main(){
    string s1 ,s2 , s3, s4;
    int n, max = 0, min = 110;
    cin >> n;
    while (n--) {
        cin >> stu.id >> stu.num >> stu.score;
        if (stu.score > max){
            max = stu.score;
            s1 = stu.id;
            s2 = stu.num;
        }
        if (stu.score < min){
            min = stu.score;
            s3 = stu.id;
            s4 = stu.num;
        }
    }
    cout << s1 <<   << s2 << endl << s3 <<   << s4 << endl;
    return 0;
}

 

1004 成绩排名 (20 分)

标签:span   --   ace   cout   nbsp   min   struct   while   main   

原文地址:https://www.cnblogs.com/Hk456/p/10714272.html

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