do { statement(s); } while(condition);
int i = 0; while (i < 5) { cout << i << "\n"; i++; }
while(condition) { statement(s); }
do { // codes; } while (testExpression);
while (x != 0){ ... }
while (x){ ... }
Console.WriteLine("By the time that For loops exist..."); Console.WriteLine("While loops are TRAAAAAAAAAAAAAAASH");
while(/*Expression*/){ //Statements go here }