Use three conditions in while statement : while « Operators statements « C++ Tutorial






#include <iostream>
 
 int main()
 {
     unsigned short small = 1;
     unsigned long  large = 123;
     const unsigned short MAXSMALL=65535;
 
     std::cout << "small: " << small << "...";
 
      // for each iteration, test three conditions
     while (small < large && large > 0 && small < MAXSMALL)
     {
         std::cout << ".";
         small++;
         large-=2;
     }
     std::cout << "\nSmall: " << small << " Large: "  << large << std::endl;
     return 0;
 }
small: 1............................................
Small: 42 Large: 41








3.16.while
3.16.1.Looping with while
3.16.2.Counter-controlled repetition
3.16.3.Display all printable characters including the extended character set
3.16.4.While statement with 'and'&&
3.16.5.Use three conditions in while statement
3.16.6.Set up 3 stop conditions for the loop: break and continue
3.16.7.A while true loop
3.16.8.Skip the body of the while loop when the condition is false
3.16.9.demonstrates WHILE loops using fibonacci series
3.16.10.Calculate the sum of the integers from 1 to 10 using while loop