Курсовая работа: Програма переводу з однієї системи числення у іншу
#27:begin screen;goto m1;end;
#75:begin
if dov<> ten_to_ then dov:=pred(dov)
else dov:=exit;screen;goto m1;
end;
#77:begin
if dov <> exit then begin
dov:=succ(dov);dov:=succ(dov);end
else dov:=ten_to_;screen;goto m1;
end;
end;
sub_to_ten;
until sim=#13;
case dov2 of
two_to_ten:begin convert_to_10(2);screen;
golovnemenu;goto m3;end;
eight_to_ten:begin convert_to_10(8);screen;
golovnemenu;goto m3;end;
sixteen_to_ten:begin convert_to_10(16);screen;
golovnemenu;goto m3;end;
end;
m3:until false;
end;
help:begin;inf;screen;end;
exit:begin;clrscr;halt;end;
end;
m1:screen;
until false;
end.