-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDay08.java
28 lines (27 loc) · 824 Bytes
/
Day08.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//Complete this code or write your own from scratch
import java.util.*;
class Day08{
public static void main(String []argh){
Scanner in = new Scanner(System.in);
int n = in.nextInt();
Dictionary<String,Integer> diary = new Hashtable<String,Integer>();
for(int i = 0; i < n; i++){
String name = in.next();
int phone = in.nextInt();
// Write code here
diary.put(name,phone);
}
while(in.hasNext()){
String s = in.next();
// Write code here
Integer element = diary.get(s);
if(element == null){
System.out.println("Not found");
}
else{
System.out.println(s+"="+element);
}
}
in.close();
}
}