home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / f / funnel-x.zip / examples / ex07.out < prev    next >
Text File  |  1992-05-27  |  160b  |  25 lines

  1.  
  2.  
  3. x=1;
  4. while (x<=10)
  5.   {
  6.    printf("X=%u\n",x);
  7.   }
  8.  
  9.  
  10. x:=1;
  11. while (x<=10)
  12.   {
  13.    printf("X=%u\n",x);
  14.   }
  15.  
  16.  
  17. x=1;
  18. while (x<=10)
  19.   {
  20.    printf("X=%u\n",x);
  21.   }
  22.  
  23.  
  24.  
  25.