Apa perbedaan array dimensi 1 yg menggunakan record sma dimensi 2?
fzreborn
Berbedaan array dimensi 1 sama dimensi 2... contoh var program dimensi 1: uses wincrt; type A record B,C:integer; end; var D:array[1..3]of A; begin....
kalau yang 2 dimensi [1..3,1..5]of ....!!
array dimensi 2.. for x:=1 to 3 do begin for x:=1 to 5 do
contoh var program dimensi 1:
uses wincrt;
type A record
B,C:integer;
end;
var
D:array[1..3]of A;
begin....
kalau yang 2 dimensi [1..3,1..5]of ....!!
array dimensi 2..
for x:=1 to 3 do
begin
for x:=1 to 5 do
semoga bisa membantu...