Beginner


私信TA

用户名:08153441

访问量:46053

签 名:

太难了

等  级
排  名 87
经  验 8552
参赛次数 2
文章发表 63
年  龄 0
在职情况 学生
学  校 CUMT
专  业 计算机科学与技术

  自我简介:

解题思路:





注意事项:





参考代码:

#include<iostream>
#include<algorithm>
using namespace std;
struct student
{
    int num;
    float score;
};
bool tem(student a,student b)
{
    return a.num<b.num;
}
int main()
{
    int N,M;
    student s[50];
    cin>>N>>M;
    for(int i=0;i<N+M;i++)
        cin>>s[i].num>>s[i].score;
    sort(s,s+N+M,tem);
    for(int i=0;i<N+M;i++)
        cout<<s[i].num<<" "<<s[i].score<<endl;;
    return 0;
}

 

0.0分

0 人评分

  评论区