wes d2a2ba9e15 first commit | 4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago | |
code.cpp | 4 years ago | |
unitTest.cpp | 4 years ago |
by Matt tags: arrays, data_structures, numbers
Create a function that takes an Arabic number and converts it into a Roman number. Examples convertToRoman(2) ➞ "II" convertToRoman(12) ➞ "XII" convertToRoman(16) ➞ "XVI" Notes All roman numerals should be returned as uppercase. The largest number that can be represented in this notation is 3,999.
Create a function that takes an Arabic number and converts it into a Roman number.
convertToRoman(2) ➞ "II"
convertToRoman(12) ➞ "XII"
convertToRoman(16) ➞ "XVI"