program data_pegawai;
uses crt;
type
pegawai = record
nip : string[15];
nama : string[30];
golongan : char;
jamKerja : real;
end;
var
data : array [1..100] of pegawai;
i,n : integer;
gapok,insentif,gaber,tot,rata : real;
u1 : char;
uses crt;
type
pegawai = record
nip : string[15];
nama : string[30];
golongan : char;
jamKerja : real;
end;
var
data : array [1..100] of pegawai;
i,n : integer;
gapok,insentif,gaber,tot,rata : real;
u1 : char;