using System;
public class Program
{
public static void Main()
while(true){
try{
Console.Write("roemischen Ziffer: ");
string rom=Console.ReadLine();
int zahl=0;
switch(rom){
case "I":
case "i":
zahl=1;
break;
case "V":
case "v":
zahl=5;
case "X":
case "x":
zahl=10;
case "L":
case "l":
zahl=50;
case "C":
case "c":
zahl=100;
}
if(zahl<=0){
throw new();
Console.WriteLine($"Zahl: {zahl}");
}catch{
Console.WriteLine("Falsche Eingabe\n");