您的位置:首页 > 其它

12. Integer to Roman

2017-08-09 00:00 155 查看
Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999.

public String intToRoman(int num) {
if(num <= 0) {
return "";
}
int[] nums = {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"};
StringBuilder res = new StringBuilder();
int digit=0;
while (num > 0) {
int times = num / nums[digit];
num -= nums[digit] * times;
for ( ; times > 0; times--) {
res.append(symbols[digit]);
}
digit++;
}
return res.toString();
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: