This is the basic program to convert integer to roman numeral
Built with
-Python
-No module needed
Aim
The aim of the program is to convert integer to roman numerals.
Workflow
Step 1: Integer number is taken as input should be less than 3999.
Step 2: Two list {symbol} and {value}
{symbol} having roman of each integer in list {value}
Step 3: check the the range of value
divide the number with all values in list {value} starting from zero.
Pratima Kushwaha