wes d2a2ba9e15 first commit | %!s(int64=4) %!d(string=hai) anos | |
---|---|---|
.. | ||
README.md | %!s(int64=4) %!d(string=hai) anos | |
code.cpp | %!s(int64=4) %!d(string=hai) anos | |
unitTest.cpp | %!s(int64=4) %!d(string=hai) anos |
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"