Question
import java.util.Set; import java.util.TreeSet; import java.util.HashSet; import java.util.Map; import java.util.Random ; import java.util.TreeMap; /** You are given a map of names to scores. Your job
import java.util.Set;
import java.util.TreeSet;
import java.util.HashSet;
import java.util.Map;
import java.util.Random ;
import java.util.TreeMap;
/**
You are given a map of names to scores.
Your job is to find the name corresponding to the highest score.
*/
public class FindMax
{
public static void main(String[] args)
{
Map scores = new TreeMap();
Random random = new Random(1) ;
scores.put("Dmytro", random.nextInt(100)) ;
scores.put("Stefan", random.nextInt(100)) ;
scores.put("Usman", random.nextInt(100)) ;
scores.put("Rabib", random.nextInt(100)) ;
scores.put("Chang", random.nextInt(100)) ;
scores.put("Carlos", random.nextInt(100)) ;
scores.put("Matthew", random.nextInt(100)) ;
scores.put("Andrew", random.nextInt(100)) ;
scores.put("Syeda", random.nextInt(100)) ;
scores.put("Sundar", random.nextInt(100)) ;
scores.put("Minesh", random.nextInt(100)) ;
scores.put("Atoosa", random.nextInt(100)) ;
scores.put("Shah", random.nextInt(100)) ;
//For this problem we will assume scores are from 0 to 99
int maxScore = -1 ;
String maxName = "" ;
//-----------Start below here. To do: approximate lines of code = 5
// 1-5. find the name (maxName) of the person with the highest score
//-----------------End here. Please do not remove this comment. Reminder: no changes outside the todo regions.
System.out.println(maxName) ;
}
}
P.S Make sure your code is formatted well and follow instructions exactly and post output screenshot so we know it is as expected!
Step by Step Solution
3.54 Rating (171 Votes )
There are 3 Steps involved in it
Step: 1
import javautilSet import javautilTreeSet import javautilHashSet import javautilMap import javautilR...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started