Answers for "3 conditions for a while loop c++"

C++
0

3 conditions for a while loop c++

// for each iteration, test three conditions
     while (small < large && large > 0 && small < MAXSMALL)
     {
         std::cout << ".";
         small++;
         large-=2;
     }
Posted by: Guest on September-05-2021

Browse Popular Code Answers by Language