Difference between revisions of "For"

From Free Pascal wiki
Jump to navigationJump to search
m
Line 1: Line 1:
[[keyword]] used with "[[to]]"\"[[downto]]" and "[[do]]" for a loop:
+
[[keyword]] used with "[[to]]"\"[[downto]]" and "[[Do|do]]" for a loop:
 
   for I:=1 to 100 do
 
   for I:=1 to 100 do
 
(repeats the actions for a hundred times,from 1 to 100)
 
(repeats the actions for a hundred times,from 1 to 100)
Line 7: Line 7:
  
 
{{Keywords}}
 
{{Keywords}}
{{Stub}}
 

Revision as of 17:34, 10 January 2007

keyword used with "to"\"downto" and "do" for a loop:

 for I:=1 to 100 do

(repeats the actions for a hundred times,from 1 to 100)

 for I:=100 downto 1

(repeats the actions for a hundred timed,from 100 to 1)

  • you can use types instead of numbers.


Keywords: begindoelseendforifrepeatthenuntilwhile