30 ! ! измените программу так чтобы вместо if было case program arifmetik; var a,b,c: real; z: char; begin writeln ('введи первое число'); read (a); writeln ('введи второе число'); read (b); writeln ('введи значок операции'); read (z); if z='+' then c: =a+b; if z='-' then c: =a-b; if z='*' then c: =a*b; if (z='/') and (b< > 0) then c: =a/b; if (z='/') and (b=0) then writeln ('деление невозможно) else writeln (a: 0: 2,z,b: 0: 2,'=',(: 0: 2); end.