Exemplo n.º 1
0
 static void Main(string[] args)
 {
     Console.WriteLine(RomanDecode.romanToIndian("MIII"));
 }
Exemplo n.º 2
0
 public static int romanToIndian(string roman_num)
 {
     return(RomanDecode.Sumation(roman_num) - RomanDecode.Substraction(roman_num));
 }