no title...

Page 107

statement, the while loop continues until the condition becomes false. The following is the syntax of a while loop.

Syntax while (condition) { statement(s); }

Syntax Details Argument while

Description Keyword that starts the loop

condition

A boolean expression that determines if the loop will or will not repeat

{

An opening curly bracket

statement(s)

Statement(s) that will execute after the condition is met

;

Semi-colon that completes the statement

} A closing curly bracket Figure 4.13 – While Loop Syntax Details

The following is a while loop example:

public class ControlStructures { public static void main (String[] args) { int i = 0; while (i < 5) {


Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.