Roman Numerals
source: Katrin Becker, 1987
- Write a program that converts numbers from integer to Roman Numerals. The design of this program must include the use of procedures.
- This program should allow the user to enter a positive integer and then it should print out the Roman Numeral equivalent.
- This is to be an interactive program - input can be expected to be valid integers, but you must check that the number entered is within the acceptable range set by your program. The user should be able to continue enetering numbrs to convert until they wish to quit the program (i.e. program should loop until user wishes to quit).
ROMAN NUMERALS:
|
I = 1
|
|
|
|
|
|
|
|
|
|
|
|
X = 10
|
|
- BONUS: Read input as characters and check for valid integers.