12.Integer to Roman
时间:2015-01-31 12:49:10
收藏:0
阅读:141
Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999.
HideTags
class Solution {
public:
string intToRoman(int num)
{
int digits[] = { 1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1 };
string symbols[] = { "M", "CM", "D", "CD", "C", "XC", "L", "XL", "X", "IX", "V", "IV", "I" };
string result;
int i = 0;
while (num > 0)
{
int times = num / digits[i];
num -= times*digits[i];
for (int j = 0; j < times; j++)
{
result += symbols[i];
}
++i;
}
return result;
}
};
评论(0)