T
tungvip95
Mã:
uses crt;
var
a,b,c,d,e,f:array [1..100] of integer;
i,n:integer;
begin
clrscr;
writeln('nhap so hoc sinh cần quản lý');
readln(n);
for i:=1 to n do begin
writeln('nhap ten hoc sinh thu ',i);
readln(a[i]);
writeln('nhap ngay sinh cua hoc sinh thu ',i);
readln(b[i]);
writeln('nhap dia chi cua hoc sinh thu ',i);
readln(c[i]);
writeln('nhap lop cua hoc sinh thu ',i);
readln(d[i]);
writeln('nhap ten bo hoc sinh thu ',i);
readln(e[i]);
writeln('nhap ten me hoc sinh thu ',i);
readln(f[i]);
end;
for i:=1 to n do begin
writeln('thong tin hoc sinh thu ',i,':','ten:',a[i],';ngay sinh: ',b[i],';dia chi:',c[i],';lop:',d[i],';ten bo:',e[i],';ten me:',f[i]);
end;
readln;
end.