While statement : While « Language « C++






While statement


#include <iostream>
using namespace std;
int main()
{
   int x, count = 0;
   float sum = 0.0;
   cout << "Please enter some integers: " << endl;
   while( cin >> x ){
      sum += x;
      ++count;
   }
   cout << "The average of the numbers: " << sum / count << endl;
   return 0;
} 

           
       








Related examples in the same category

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