The illustration shows a "while" and "do-while" statement. The syntax for "while" is as follows:

• “A while Statement with a Single Statement Body

while (Boolean_Expression)

Statement" with "Statement" annotated as "Body"

• “A while Statement with a Multistatement Body

while (Boolean_Expression)

{
Statement_1
Statement_2
.
.
.
Statement_Last
}" with all "Statement" annotated as "Body"
The syntax for  "do-while" is as follows:
• “A do-while Statement with a Single Statement Body
do
Statement
while (Boolean_Expression);" with "Statement" annotated as "Body"
• “A do-while Statement with a Multistatement Body
do
{
Statement_1
Statement_2
.
.
.
Statement_Last
} while (Boolean_Expression);" with all "Statement" annotated as "Body"