View Single Post
Old 12-09-2002, 04:57 PM  
Nydahl
Confirmed User
 
Join Date: Sep 2002
Location: closer then it appears
Posts: 6,655
Hi,
declare array of chars, 'a','b','c' and so on.

now define count of chars, in our country 32;
Edit1.Text is string of combined chars.
you must write procedures to store it into file etc.



i,j,k, count: integer;

begin
count := 32;
for i:=1 to count do
begin
for j:=1 to count do
begin
for k:=1 to count do
begin
Edit1.Text := IntToStr(i)+' '+IntToStr(j)+' '+IntToStr(k);
end;
end;
end;
end;
Nydahl is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote