13. Roman to Integer

題目: 解答: 就是12題的逆運算 代碼: class Solution { public: int romanToInt(string s) { int result = 0, len = s.size(), index = 0; while(index < len && s[index] == 'M'){ result += 10
相關文章
相關標籤/搜索