December 2018 1 10 Report
Mógłby ktoś napisać mi co się w każdej linijce tego programu dzieje, opisać mi to obok. Proszę bardzo o pomoc.

program moje_rekordy;
uses CRT;
type osoba = recerd
imie, nazwisko : string[15];
adres : string[50];
telefon : string[10];
end;
tab = array[1..35] of osoba;
var x : tab;
n : byte;
i : Integer;
zn : char;
wybor : char;
procedure wpisz(var a : tab; n : byte);
begin
ClrScr;
writeln('Dane osoby nr ', n:3);
write('imie : ');
readln(a[n].imie);
write('nazwisko : ');
readln(a[n].nazwisko);
write('adres : ');
readln(a[n].adres);
write('telefon : ');
readln(a[n].telefon);
end;
procedure wypisz(a : tab; n : Integer);
begin
ClrScr;
write('Wybierz nr osoby');
readln (n);
with a[n] do
begin
writeln;
writeln('nazwisko : ', nazwisko);
writeln('imie : ', imie);
writeln('adres : ', adres);
writeln('telefon : ', telefon);
end;
writeln;
zn:=ReadKey;
end;
begin
ClrScr;
write('liczba osob : ');
readln(n);
for i:=1 to n do wpisz(x, i);
for i:=1 to n do wypisz(x, i);
end.
More Questions From This User See All

Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.