@chawuciren
        
        2018-11-16T09:08:15.000000Z
        字数 1363
        阅读 761
    leetcodeRoman numerals are represented by seven different symbols: I, V, X, L, C, D and M.
Symbol       Value 
I             1 
V             5 
X             10 
L             50 
C             100 
D             500 
M             1000 
For example, two is written as II in Roman numeral, just two one's added together. Twelve is written as, XII, which is simply X + II. The number twenty seven is written as XXVII, which is XX + V + II.
Roman numerals are usually written largest to smallest from left to right. However, the numeral for four is not IIII. Instead, the number four is written as IV. Because the one is before the five we subtract it making four. The same principle applies to the number nine, which is written as IX. There are six instances where subtraction is used:
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 (500) and M (1000) to make 400 and 900. 
Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999.
Example 1:
Input: "III" 
Output: 3
int romanToInt(char* s){int res=0;int length=0;length=strlen(s);int *num=NULL;num=(int*)malloc(sizeof(int)*length);for(int i=0;i<length;i++){if(s[i]=='I'){//全部转成数字num[i]=1;}if(s[i]=='V'){num[i]=5;}if(s[i]=='X'){num[i]=10;}if(s[i]=='L'){num[i]=50;}if(s[i]=='C'){num[i]=100;}if(s[i]=='D'){num[i]=500;}if(s[i]=='M'){num[i]=1000;}}for(int j=0;j<length-1;j++){if(num[j]<num[j+1]){res+=(num[j+1]-num[j]);}else{res+=num[j];if((j+1)==length-1)res+=num[length-1];}}free(num);return res;}
Wrong Answer 
Details  
Playground Debug  
Input 
"MCMXCIV" 
Output 
3094 
Expected 
1994
