I am tyring to create a Roman Numeral Calculator in C#. I want this calculator to accept two numbers (in Roman Numeral form) and then allow a single mathematical operation to be performed (+, -, *, /).
Using Roman Numerals:
I=1, V=5, X=10, L=50, C=100, D=500, M=1000
I want this to prompt for the first operand (rom1), operator(+, -, *, /), second operand (rom2) and then display results.
Bookmarks