Max
64
Q:

while loops c++

do
{
   statement(s);
} while(condition);
4

  int i = 0;
while (i < 5) {

    cout << i << "\n";

  i++;
}

  
2
while(condition)
{
   statement(s);
}
1
do {
   // codes;
}
while (testExpression);
4
while (x != 0){ ... }
2
while (x){ ... }
2
Console.WriteLine("By the time that For loops exist...");
Console.WriteLine("While loops are TRAAAAAAAAAAAAAAASH");
0
while(/*Expression*/){
 //Statements go here
}
0

New to Communities?

Join the community