Question: Provide 3 examples outputs for code. Use online compiler or visual studio to run the code. Write a program that asks the user the grade

Provide 3 examples outputs for code.
Use online compiler or visual studio to run the code.
Write a program that asks the user the grade received in the course. If the grade is >= 90, then the student received an A. if between 80 and 89, it is a B, if between 70 and 79 it's a C, if between 60 and 69 it's a D and if less than 60, it's a failure, and require the student to repeat the course. Input 1: Please Enter your course grade >> 83 Output 1: You have received a letter grade of B Input 2: Please Enter your course grade >> 42 Output 2: You have failed the course; you are required to repeat the course next semester. Microsoft Visual Studio Debug Console Enter your course grade >>42 You have failed the course; you are required to repeat the course next semester. CA Microsoft Visual Studio Debug Console Enter your course grade >>78 You have recieved a letter grade of C CA Microsoft Visual Studio Debug Console Enter your course grade >>86 You have recieved a letter grade of B Note: you can use if statements or Switch statement for this code
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
