program If3;
var
N : Integer;
begin
Write('Введите целое число: ');
Readln(N);
if N>0 then N:=n+1;
if N<0 then N:=n-3;
if N=0 then N:=17;
writeln(N);
end.
Объяснение:
Решение Pascal
program If3;
var
N : Integer;
begin
Write('Введите целое число: ');
Readln(N);
if N>0 then N:=n+1;
if N<0 then N:=n-3;
if N=0 then N:=17;
writeln(N);
end.
Объяснение:
Решение Pascal