Computer Science Canada

do loops

Author:  magicman [ Thu Jun 01, 2006 11:39 am ]
Post subject:  do loops

WTF are they... i to use them in a project and i have no clue what they are, ive never used them...

are there topics made about them...

Author:  wtd [ Thu Jun 01, 2006 11:43 am ]
Post subject: 

http://java.sun.com/docs/books/tutorial/java/nutsandbolts/while.html

Author:  zylum [ Thu Jun 01, 2006 11:44 am ]
Post subject: 

do-while loops are similar to while loops except for the fact that the code in a do-while loop gets executed atleast once before the condition is checked, whereas in a while loop, the condition is first checked before any code gets executed.


: