You are viewing a single comment's thread. Return to all comments →
my solution
public static void main(String []argh) { Scanner in = new Scanner(System.in); Map<String,Integer> m=new HashMap<>(); int n=in.nextInt(); in.nextLine(); for(int i=0;i<n;i++) { String name=in.nextLine(); int phone=in.nextInt(); in.nextLine(); m.put(name,phone); } while(in.hasNext()) { String s=in.nextLine(); if(m.containsKey(s)){ System.out.println(s+"="+m.get(s)); } else System.out.println("Not found"); }
Seems like cookies are disabled on this browser, please enable them to open this website
Java Map
You are viewing a single comment's thread. Return to all comments →
my solution