13. Roman to Integer - LeetCode

Roman to Integer 將羅馬數字轉換爲阿拉伯數字,由題分析可得限定輸入數字的範圍(1 - 3999) 直接根據條件分類處理,效果還行,代碼如下: class Solution { public: int romanToInt(string s) { int n=s.length(); int res=0,i; for(i=0;i<
相關文章
相關標籤/搜索