| Author |
while Loop
|
Olliver Lim Kam Sian
Greenhorn
Joined: Sep 26, 2007
Posts: 12
|
|
Hello everyone! I'm using a while loop and when i run it its giving an infinite loop! I would like to know what causes an infinite loop to occur!! Thanks Olliver
|
 |
Keith Lynn
Ranch Hand
Joined: Feb 07, 2005
Posts: 2341
|
|
|
An infinite loop occurs with a while loop if the condition in the while loop is never false.
|
 |
fred rosenberger
lowercase baba
Bartender
Joined: Oct 02, 2003
Posts: 9939
|
|
what you can do it put some println statement inside the loop, to print whatever the variable is you use in your condition. check to make sure you really are changing it, or that the logic that would change it is correct. if you are still stuck, feel free to post the code here.
|
Never ascribe to malice that which can be adequately explained by stupidity.
|
 |
 |
|
|
subject: while Loop
|
|
|