请将给出的整数转化为罗马数字 保证输入数字的范围在1 到 3999之间。
示例1
输入
1
输出
"I"
加载中...
import java.util.*; public class Solution { /** * * @param num int整型 * @return string字符串 */ public String intToRoman (int num) { // write code here } }
class Solution { public: /** * * @param num int整型 * @return string字符串 */ string intToRoman(int num) { // write code here } };
# # # @param num int整型 # @return string字符串 # class Solution: def intToRoman(self , num ): # write code here
/** * * @param num int整型 * @return string字符串 */ function intToRoman( num ) { // write code here } module.exports = { intToRoman : intToRoman };
# # # @param num int整型 # @return string字符串 # class Solution: def intToRoman(self , num ): # write code here
package main /** * * @param num int整型 * @return string字符串 */ func intToRoman( num int ) string { // write code here }
1
"I"