home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / PASANS.ZIP / CH04_1.PAS < prev    next >
Pascal/Delphi Source File  |  1991-02-04  |  477b  |  35 lines

  1.                             (* Chapter 4 - Programming exercise 1 *)
  2. program List_Numbers;
  3.  
  4. var Index : integer;
  5.  
  6. begin
  7.    for Index := 1 to 12 do begin
  8.       Write(Index:8);
  9.       if (Index = 10) then
  10.          Write(' October is my birth month.');
  11.       Writeln;
  12.    end;
  13. end.
  14.  
  15.  
  16.  
  17.  
  18. { Result of execution
  19.  
  20.        1
  21.        2
  22.        3
  23.        4
  24.        5
  25.        6
  26.        7
  27.        8
  28.        9
  29.       10 October is my birth month.
  30.       11
  31.       12
  32.  
  33. }
  34.  
  35.