题目
Number: 11
Difficulty: Medium
Tags: Math, String
Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999.
题解
把整数转为罗马数字。
因为限制了最大为4位数,所以用枚举每个为的数字就可实现。
代码
string intToRoman(int num) {
string M[] = {"", "M", "MM", "MMM"};
string C[] = {"", "C", "CC", "CCC", "CD", "D", "DC", "DCC", "DCCC", "CM"};
string X[] = {"", "X", "XX", "XXX", "XL", "L", "LX", "LXX", "LXXX", "XC"};
string I[] = {"", "I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX"};
return M[num / 1000] + C[(num % 1000) / 100] + X[(num % 100) / 10] + I[num % 10];
}