while
—loops through a block of code if and as long as a specified condition is true.
do...while
—loops through a block of code once, and then repeats the loop as long as a special condition is true.
for
—loops through a block of code a specified number of times.
foreach
—loops through a block of code for each element in an array.
while
Statement
The while statement will execute a block of code if and as long as a condition is true. |
|
The example prints the random number between 0 and 9 until the random number matches the input value:
|
|
I wrote a song, but I can’t read music so I don’t know what it is. Every once in a while I’ll be listening to the radio and I say, “I think I might have written that.” — Steven Wright |