Answered step by step
Verified Expert Solution
Question
1 Approved Answer
7.17 (Sort students) Write a program that prompts the user to enter the number of students, the students' names, and their scores, and prints student
7.17 (Sort students) Write a program that prompts the user to enter the number of students, the students' names, and their scores, and prints student names and scores in decreasing order of their scores. Assume that the name is a string without spaces, use the Scanner's next method to read a name. Sample Run for Exercise07 17 Enter input data for the program Sample data provided below You may moday it). John 71.5 Peter 34.9 Susan 94.2 Kim 79.1 Joan 56.4 Show the Sample Output Using the Preceeding Input Reset command java Exercisee7 17 Enter the number of students: 5 Enter a student name: John Enter a student score: 71.5 Enter a student name: Peter Enter a student score: 34.9 Enter a student name: Susan Enter a student score: 94.2 Enter a student name: Kim Enter a student score: 79.1 Enter a student name: Joan Enter a student score: 56.4 Names in decreasing order of their scores are: Susan 94.2 Kim 79.1 John 71.5 Joan 56.4 Peter 34.9 command
Step by Step Solution
There are 3 Steps involved in it
Step: 1
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