Loops While Statement - English

11678 visits



Outline:

Loops - While Statement The while loop executes a block of code while a condition is true. while (condition) { code to be executed; }