霍霍


私信TA

用户名:2632182424

访问量:416

签 名:

等  级
排  名 15678
经  验 831
参赛次数 0
文章发表 1
年  龄 0
在职情况 学生
学  校 大连外国语大学
专  业

  自我简介:

解题思路:#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 人评分

  评论区

  • «
  • »