
-----------------------------------
magicman
Thu Jun 01, 2006 11:39 am

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...

-----------------------------------
wtd
Thu Jun 01, 2006 11:43 am


-----------------------------------
http://java.sun.com/docs/books/tutorial/java/nutsandbolts/while.html

-----------------------------------
zylum
Thu Jun 01, 2006 11:44 am


-----------------------------------
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.
