Java View all facts Glossary Help |
syntactic unit > statement > control flow statement > loop statement > while loop |
while loop comparison table |
Subject | have syntax | have example | have purpose | is a kind of | interchange with |
---|---|---|---|---|---|
loop statement | to execute a section of code more than once | control flow statement | |||
while loop | while(condition) | //Decrement n by 1 until n is 0 | to repeat a computation by looping through that computation until a test has been satisfied | loop statement | a for loop |
Next loop statement: do-while loop Up: loop statement Previous loop statement: for loop