Program: Write a program that prints a table of all the Roman numeral equivalents of the decimal numbers in the range 1 - 100.
HINT: Separate the decimal numbers into 10 and single digits and print the appropriate Roman numeral, you will need two switch statements. Use a for loop to go from 1-100.
Output Example:
Roman Numeral Decimal
I 1
II 2
III 3
You have to prepare a program to show roman numeral equivalents of the decimal numbers.