| | |
Summary: while and do-while Statements
March 23, 2008 ICS102: while & do-while 1
Outline
Introduction
while Loop
do-while Loop
March 23, 2008 ICS102: while & do-while 2
- Introduction
Loops in Java are similar to those in other high-level
languages
Java has three types of loop statements:
The while
The do-while
The for
The code that is repeated in a loop is called the body of
the loop
Each repetition of the loop body is called an iteration of
the loop
March 23, 2008 ICS102: while & do-while 3
- while loop
|