Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Roman Numerals Write aprogramthat asks the user to enter a number within the range of 1 through 10. Use aswitchstatementto display the Roman numeral...
4.1: Roman Numerals
Write a program that asks the user to enter a number within the range of 1 through 10. Use a switch statement to display the Roman numeral version of that number.
Input Validation: Do not accept a number less than 1 or greater than 10.
Prompts And Output Labels. Use the following prompt for input: "Enter a number in the range of 1 - 10: ". The output of the program should be just a Roman numeral, such as VII.
CLASS NAMES. Your program class should be called RomanNumerals