Friday, October 5, 2007

How to work with For statement

How to work with For statement

To work with For statement

Recognizing Delphi programming structure – For:

Declaration

var

x:Integer;

begin

for x:=1 to 10 do

begin

&ldots;&ldots;&ldots;

&ldots;&ldots;

end;

end;


No comments: