import java.util.HashMap; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int M = sc.nextInt(); HashMap<Integer, Integer> map = new HashMap<>(); for (int i = 0; i < N + M; i++) { map.put(sc.nextInt(), sc.nextInt()); } for (Integer key : map.keySet()) { System.out.println(key + " " + map.get(key)); } } }
解题思路:
注意事项:
参考代码:
0.0分
0 人评分
字符串问题 (C语言代码)浏览:1634 |
字符串对比 (C语言代码)浏览:1471 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:387 |
妹子杀手的故事 (C语言代码)浏览:1297 |
printf基础练习2 (有点不明白)浏览:887 |
WU-陶陶摘苹果2 (C++代码)浏览:1018 |
母牛的故事 (C语言代码)浏览:1451 |
C语言考试练习题_保留字母 (C语言代码)浏览:743 |
A+B for Input-Output Practice (VII) (C语言代码)浏览:566 |
1231题解(注意理解“输入多个测试实例”)浏览:830 |