Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Introduction to Data Mining

Authors: Pang Ning Tan, Michael Steinbach, Vipin Kumar

1st edition

321321367, 978-0321321367

More Books

Students also viewed these Programming questions