12. Integer to Roman
Given an integer, convert it to a roman numeral. Input is guaranteed to be within the range from 1 to 3999.
给一个整数,将其转换成一个罗马数字。 输入的保证是从1到3999.
你需要完成以下的函数: char* intToRoman(int num) { } 这道题的网址是:“https://leetcode.com/problems/integer-to-roman/#/description”
|