/Design a program that supplies numbers (9000 only) and outputs their equivalent Roman numerals.
//the supply numbers and their equivalent Roman numerals are given below.
//Supply number equivalent Roman Numeral
//1 I
//5 V
//10 X
//50 L
//100 C
//500 D
//1000 M
Sample Output:
Enter integer (1-9000):1984
MCMLXXXIV
can anyone make a code for this problem.? using switch. i dont know where to start :(