How do I print out the key of a maximum value it a hashmap? Check the code in multiline comment
Used: Collections.max(players.getKey); But got errors import java.util.*; public class Bowling { HashMap<String, Integer> players; Bowling() { players = new HashMap<String, Integer>(); } public void addPlayer(String name, int p) { players.put(name, p); } /** public void getWinner() { for (Map.Entry entryPair: players.entrySet()){ int maxV = Collections.max(players.Values); System.out.println(maxV(players.getKey)); } }*/ } public class Program { public static void main(String[ ] args) { Bowling game = new Bowling(); Scanner sc = new Scanner(System.in); for(int i=0;i<3;i++) { String input = sc.nextLine(); String[] values = input.split(" "); String name = values[0]; int points = Integer.parseInt(values[1]); game.addPlayer(name, points); } game.getWinner(); } }