[leetcode]Integer to Roman
摘要:
class Solution {public: string intToRoman(int num) { string a[10] = {"","I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX"}; stri... 阅读全文
posted @ 2015-10-20 22:18 Mereyct 阅读(220) 评论(0) 推荐(0) 编辑