LeetCode_12: Integer to Roman
# 引言 题目链接:https://leetcode.com/problems/integer-to-roman/description/ # 题目大意 输入一个整型数字,将这个数字转换为罗马数字 有如下约定 Symbol Value I 1 V 5 X 10 L 50 C 100 D 500 M 1000 I can be placed before V (5) and X (10) to make 4 and 9. X can be placed before L (50) and C (100) to make 40 and 90. C can be placed before D...
more...