home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / NTUsers / JBECODE.ZIP / JavaByExample / chap10 / lst10_7.txt < prev    next >
Text File  |  1996-02-07  |  67b  |  9 lines

  1. int count = 10;
  2.  
  3. do
  4. {
  5.     ++count;
  6. }
  7. while (count <= 15);
  8.  
  9.