13. Roman to Integer

public class Solution {
    public int romanToInt(String s) {
        int res=toNumber(s.charAt(0));
        for(int i=1;i

你可能感兴趣的:(13. Roman to Integer)