While loop
nA while loop continues to perform an action as long as a condition is true. nThe while statement is composed of a condition (a boolean expression) and another statement, the body.
nsyntax:
n while ( condition )
n body