do loops

keko2004

Active member
Joined
Feb 13, 2006
Messages
39
Location
Middle Village, NY
Programming Experience
1-3
can someone explain and maybe give me an example of DO WHILE and LOOP WHILE loops. Not sure whats the difference and when and where i should use one.
 
Do while loops only run the code if the condition is met, Loop while loops run the code between the loop atleast once
 
Back
Top