B班你好
  • 板块灌水区
  • 楼主Wzjy20130115
  • 当前回复2
  • 已保存回复2
  • 发布时间2025/1/19 12:51
  • 上次更新2025/1/19 13:12:27
查看原帖
B班你好
1598067
Wzjy20130115楼主2025/1/19 12:51

B2125 最高分数的学生姓名

#include<bits/stdc++.h>
using namespace std;
int main(){
    int n;cin>>n;//输入题目中的N
    int max=-1;string ans;//max为目前的最高分数,ans为目前最高分数的学生名字
    for(int i = 0;i < n;i ++){
        int x;string s;cin>>x>>s;//输入
        if(x>max)max=x,ans=s;//如果这位学生的分数大于目前的最高分数,则更新目前的最高分数与学生名字
    }
    cout<<ans;
    return 0;
}
2025/1/19 12:51
加载中...