24.12.2012, 18:29
Quote:
while is a loop type similar to for and do..while. The basic operation is an if statement done which if true does some code and jumps back to the if. If it's false it goes to after the loop code - there is no else. Going back to the goto example: Код:
new i = 0; for_loop: if (i < 10) { i++; goto for_loop; } Код:
new i = 0; while (i < 10) { i++; } |