LeetCode 12 整数转罗马数字
Posted Starzkg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 12 整数转罗马数字相关的知识,希望对你有一定的参考价值。
https://leetcode-cn.com/problems/integer-to-roman/
解决方案
class Solution {
int[] values = {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"};
public String intToRoman(int num) {
StringBuffer sb = new StringBuffer();
for (int i = 0; i < values.length && num > 0; i++) {
while (num >= values[i]) {
sb.append(symbols[i]);
num -= values[i];
}
}
return sb.toString();
}
}
以上是关于LeetCode 12 整数转罗马数字的主要内容,如果未能解决你的问题,请参考以下文章