Develop a program in Java to prompt the user for a score and…
Develop a program in Java to prompt the user for a score and then assign a letter grade based on the following grading criteria. The score must be between 0 and 100, if the inputted score is outside the range, display an error message. Use JOptionPane for Input and Output Grading Criteria Score >= 90 – “A” Score >= 80 – “B” Score >= 70 – “C” Score < 70 - “F”