type teach = record firstName, lastName: string; end; lecture = record teacher: teach; subject: string; shifr, auditoria, day, para: integer; constructor create(teachFirstName, teachLastName, subject_: string; shifr_, auditoria_, day_, para_: integer); begin teacher.firstName := teachFirstName; teacher.lastName := teachLastName; subject := subject_; shifr := shifr_; auditoria := auditoria_; day := day_; para := para_; end; end;var a: array [1..2] of lecture;begin for i: byte := 1 to 2 do begin a[i] := new lecture('Ололош' , 'Джигурдович', 'Джигурдоведение', 2, 5, 6, 7); end;end.