//本着解题的原则,未严格按照题目要求,提供给大家一种思路,大神路过就行,谢谢
#include <iostream>
#include <algorithm>
using namespace std;
struct student{
int number;
float score;
};
int main ()
{
int n,m;
cin>>n>>m;
int *p=new int [n+m];
student *stu=new student [n+m];
for(int i=0;i<n+m;i++){
cin>>(*(stu+i)).number>>(*(stu+i)).score;
*(p+i)=(*(stu+i)).number;
}
sort(p,p+n+m);
for(int i=0;i<n+m;i++){
cout<<*(p+i)<<" ";
for(int j=0;j<n+m;j++){
if((*(stu+j)).number==*(p+i)){
cout<<(*(stu+j)).score;
break;
}
}
cout<<endl;
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.7 (Java代码)浏览:910 |
WU-复数求和 (C++代码)浏览:2121 |
WU-输出九九乘法表 (C++代码)浏览:1855 |
【矩阵】 (C++代码)浏览:1000 |
1014题解浏览:524 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:1483 |
模拟计算器 (C++代码)浏览:885 |
大神老白 (C语言代码)浏览:638 |
字符串的修改 (C语言代码)浏览:1206 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:417 |