While

The statements in a while loop are executed over and over while a condition is met. Format while (condition) { statements } Note that if the condition is false initially, the statements will never be executed. Example This code will wait until it is at least 3600...