您的位置:首页 > 其它

12. Integer to Roman

2016-04-03 22:21 423 查看
Given an integer, convert it to a roman numeral.

Input is guaranteed to be within the range from 1 to 3999.

题意:整数转为罗马序列。

思路:把1000,900,500,400,100,90,50,40,10,9,5,4,1作为基数,然后进行除法和取余运算。

class Solution {
public:
string intToRoman(int num) {
string s;
int base[] = { 1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1 };
string roman[] = {"M", "CM", "D", "CD", "C", "XC", "L", "XL", "X", "IX", "V", "IV", "I"};
int i = 0;
while (num){
int j = 0;
j = num / base[i];
num %= base[i];
while (j--){
s += roman[i];
}
i++;
}
return s;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: