while (loop-continuation-condition) { statement(s) in loop body; }
int count = 0; while (count < 3) { cout << "Welcome to C++!\n"; count++; }