while execute? 3while statement
Here is the syntax for the while statement:
while ( condition ) statement
Notes:
Since the statement can be a single statement or
a block statement,
a while statement looks like
either of the following:
Varieties of while Statements | |
|---|---|
while ( condition ) statement; |
while ( condition )
{
one or more statements
}
|
The style of indenting used here leads to
fewer errors than alternative styles.
The statements controlled by the while are
indented.
The braces of the block are aligned with the while
and each is put on its own line.
Is the condition always surrounded by parentheses?