Write a program that uses if-else-if statements to print out grades A, B, C, D, F according to the following criteria:
A: 90-100
B: 80-89
C: 70-79
D: 60-69
F: <60
Use the Scanner class to accept a number score from the user to determine the letter grade. Print out "Score out of range." if the score is less than
0 or greater than 100.
Write a program that accepts an integer between 1 and 7 from the user. Use a switch statement to print out the corresponding weekday. Print
"Out of range" if the number is less than 1 or greater than 7. Don't forget to include "break" statements in each of your cases.