Program xxx; uses crt; var price, calc:real begin writeln('Ведите сумму'); readln(price); if price<500 then begin calc:=price-price*0.03; writeln('с учетом скидки сумма будет',calc*) end; if price>1000 then begin calc:=price-price*0.05; writeln('с учетом скидки сумма будет',calc*) end; end.
uses crt;
var price, calc:real
begin
writeln('Ведите сумму');
readln(price);
if price<500 then
begin
calc:=price-price*0.03;
writeln('с учетом скидки сумма будет',calc*)
end;
if price>1000 then
begin
calc:=price-price*0.05;
writeln('с учетом скидки сумма будет',calc*)
end;
end.