public static void Main()
Console.WriteLine("Please enter a Roman Numeral (I, II, III, IV, V)\nI'll convert it to a decimal for you.");
string rNumeral = Console.ReadLine();
else if (rNumeral == "II")
else if (rNumeral == "III")
else if (rNumeral == "IV")
else if (rNumeral == "V")
Console.WriteLine("\nSorry, you entered an invalid entry.");
Console.WriteLine("\n" + rNumeral + " equals " + dNumber);