一天一道LeetCode系列 (一)题目 Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. (二)解题 和上一题相反,这题将罗马数字转换成整形数. 注意到 4,9,40,90,400,900这些特殊的数字的区别就不难写出代码了. class Solution { public: int romanToInt(string s) {…