// PascalABC.NET 3.0, сборка 1073 var c:char; begin Write('Введите римскую цифру (I,V,X,L,C,D,M): '); Readln(c); case c of 'I':Writeln('1'); 'V':Writeln('5'); 'X':Writeln('10'); 'L':Writeln('50'); 'C':Writeln('100'); 'D':Writeln('500'); 'M':Writeln('1000'); else Writeln('Вы ошиблись') end end.