Question: ANSWER IN C++ Write a complete program that converts a user input number in the 0 to 100 grade scale to the 0.0 to 4.0
ANSWER IN C++

Write a complete program that converts a user input number in the 0 to 100 grade scale to the 0.0 to 4.0 grade scale. a) Minimum input value is 60, maximum is 100. b) All whole numbers must display as decimals. For example, 0 as 0.0 and 3 as 3.0, use cout precision. Some example values: 70 = 1.0, 89 = 2.9, 63 = 0.3, 96 = 3.6.
3. Write a complete program that converts a user input number in the 0 to 100 grade scale to the 0.0 to 4.0 grade scale. a) Minimum input value is 60, maximum is 100. b) All whole numbers must display as decimals. For example, O as 0.0 and 3 as 3.0, use cout precision. Some example values: 70 = 1.0, 89 = 2.9, 63 = 0.3, 96 = 3.6. User input can be any content and it's bold and italicized for clarity. Example Output i GRADE CONVERTER Input grade (60-100): 85 Converted grade (0.0 to 4.0): 2.5 Example Output 2 GRADE CONVERTER Input grade (60-100): 94.65 Converted grade (0.0 to 4.0): 3.5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
