Question: Given the grade variable, which indicates a student's numeric grade, determine which letter grade they should receive. Return the proper letter (char) as the

Given the grade variable, which indicates a student's numeric grade, determine which letter grade they should receive. Return the proper letter (char) as the result of this test. Do not worry about rounding ti grade. Use the following table to indicate which letter corresponds to provided grades. > 90 and 80 and 90 >73 and 80 > 70 and < 73 >= 0 and < 70 100 Example input 89.3 Example output B "A" 'B' "C" A 'D' "F" "?" Given the grade variable, which indicates a student's numeric grade, determine which letter grade they should receive. Return the proper letter (char) as the result of this test. Do not worry about rounding t grade. Use the following table to indicate which letter corresponds to provided grades. >=90 and = 80 and < 90 "B" >= 73 and < 80 C >= 70 and < 73 "D' >=0 and < 70 "F 100 Example input 39.3 Example output B Additional comments: c++ only one return no cast
Step by Step Solution
3.51 Rating (154 Votes )
There are 3 Steps involved in it
The images provided contain a problem where we are asked to return the corresponding letter grade ba... View full answer
Get step-by-step solutions from verified subject matter experts
