Question: Method name: curveScores Parameter(s): A String containing numbers from 0 to 100. Each number is separated by a space. There must be at least one
Method name: curveScores Parameter(s): A String containing numbers from 0 to 100. Each number is separated by a space. There must be at least one number in the String. Return value: A String of numbers scaled so that the highest number in the parameter String becomes 100 and all the other numbers are moved up by the same amount. This String should also be numbers separated by spaces with no additional characters. The order of the numbers should stay the same, so that a number in the original string has the equivalent scaled number in the returned string in the same place. Example: curveScores("45 85 90") would return "55 95 100".
Please do not use arrays, only scanners. The language is java
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
