解题思路:#include<map> 为map头文件,每一行输入学号和成绩,所以可以把学号看成“键”,把成绩看成值。系统会根据键值自动进行排序,所以比较轻松
注意事项:主义map函数的初始化,比较复杂;
参考代码:
#include<iostream> //c++头文件 #include<stdio.h> #include<map> //map头文件 #include<queue> #include<string> #include<algorithm> using namespace std; int main() { map<int,int>p; //map函数声明 map<int,int>::iterator it; int a,b; cin >> a>>b; int c=a+b; while(c--) { int x,y; cin >> x>>y; p[x] = y; } for(it = p.begin();it!=p.end();it++) { pair<int,int>item = *it; //通过item依次输出 cout << item.first <<" " << item.second <<endl; //Frist就是键(学号),second为值(成绩) } cout <<endl; return 0; }
0.0分
0 人评分
数组输出 (C语言代码)错误???浏览:602 |
妹子杀手的故事 (C语言代码)浏览:1297 |
兰顿蚂蚁 (C++代码)浏览:1160 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:644 |
【蟠桃记】 (C语言代码)浏览:697 |
WU-图形输出 (C++代码)浏览:836 |
WU-整数平均值 (C++代码)浏览:1307 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:564 |
C语言训练-自由落体问题 (C语言代码)浏览:650 |
Minesweeper (C语言描述,蓝桥杯)浏览:1176 |