Calculate the sum of the integers from 1 to 10 using while loop : while « Operators statements « C++ Tutorial






#include <iostream>
using std::cout;
using std::endl;

int main()
{
   int sum; 
   int x; 

   x = 1; 
   sum = 0; 

   while ( x <= 10 )
   {
      sum += x;
      x++;
   }

   cout << "The sum is: " << sum << endl;
   return 0;
}
The sum is: 55








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