Реферат: Основы программирования
Procedure Novoe;
begin
if tfirst=Nil then
begin
new(tcurr);
writeln('Адрес');
readln(adre);
tcurr^.inf:=adre;
tcurr^.next:=nil;
tfirst:=tcurr;
end
else
begin
writeln ('adresses');
readln(adre);
new(tcurr^.next);
tcurr:=tcurr^.next;
tcurr^.inf:=adre;
end;
tcurr^.next:=nil;
dont:=tcurr;
end;
Procedure Prosm;
begin
tcurr:=tfirst;
while tcurr <> nil do
begin
writeln(tcurr^.inf);
repeat