参考代码:
#include<iostream> #include<string> #include<algorithm> #include<stdio.h> using namespace std; struct student { int sno; int score; } stu[1001]; bool sort_rule(student a, student b) { return a.sno<b.sno; } int main() { int m,n; cin>>m>>n; for(int i=0; i<m+n; i++) { scanf("%d %d", &stu[i].sno, &stu[i].score); }; sort(stu,stu+m+n,sort_rule); for(int i=0; i<m+n; i++) { cout<<stu[i].sno<<' '; cout<<stu[i].score<<endl; } return 0; }
0.0分
0 人评分
C语言训练-舍罕王的失算 (C语言代码)浏览:1054 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:1276 |
点我有惊喜!你懂得!浏览:1392 |
C语言训练-排序问题<2> (C++代码)浏览:936 |
字符串对比 (C语言代码)浏览:1471 |
C语言程序设计教程(第三版)课后习题1.6 (C++代码)浏览:909 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:909 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:782 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:633 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:368 |