1004 成绩排名

本题思路非常简单,其实根本不需要使用结构体,也不需要排序,一边输入一遍比较大小即可,下面的代码其实较为繁琐。

#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
struct stu_node
{
    string stu_name;
    string stu_num;
    int fneshu;
};
int main(int argc, char** argv) {
    
    int student_num;
    int i;
    int max,min,max_index=0,min_index=0;
    cin>>student_num;
    if(student_num<1)
        return 0;
    stu_node node[student_num];
    for(i=0;i<student_num;i++)
    {
        cin>>node[i].stu_name >>node[i].stu_num >>node[i].fneshu; 
    }
    //sort();
    max = node[0].fneshu;
    min = node[0].fneshu;
    for(i=0;i<student_num;i++)
    {
        if(node[i].fneshu>max)
        {
            max =node[i].fneshu;
            max_index = i;
        }
        if(node[i].fneshu<min)
        {
            min =node[i].fneshu;
            min_index = i;            
        }
    }
    cout <<node[max_index].stu_name << " " << node[max_index].stu_num << endl;
    cout <<node[min_index].stu_name << " " << node[min_index].stu_num << endl;
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值