Java View all facts Glossary Help |
syntactic unit > statement > control flow statement > loop statement > do-while loop |
do-while loop | ||||
subject | fact |
do-while loop | has syntax for (entry expression; boolean expression; continuation expression) { | |
has example int c; | ||
is a subtopic of Loops and Decision Making | ||
is a kind of loop statement | ||
loop statement | has purpose to execute a section of code more than once | |
statement | is terminated by a semicolon | |
should be not more than one line long if possible | ||
syntactic unit | has syntax rule bold = mandatory |