Nesting While Loops : While « Language « C++






Nesting While Loops

#include <iostream>
using namespace std;
int main(void)
{
   int x = 0;
   while (x++ < 5)
   {
      int y = 0;
      while (y++ < 5)
         cout << "X";
      cout << '\n';
   }
   return 0;
}


           
       








Related examples in the same category

1.While loop: outputs the numbers between 1 and 10
2.While loop Demo
3.While statement
4.Use the break keyword to provide the user with the option of quitting the data entry
5.While loop: two conditions
6.Make the condition of the while loop always true
7.Update of the value of num was done within the body of the loop