×

While Loop Examples in C++

While Loop

A while loop repeats all code in its body, also known as a while statement, as long as a specific condition is satisfied. The loop ends if or when the condition that's no longer met.

The syntax of the while loop

the syntax for a while loop is given by

while(condition)
    {
      statement(x);
     }

Examples of While Loop

Example 1: Program to find the sum and average of given numbers using a while loop.

Step 1: Start the program.

Step 2: Take the number of terms as n as inputs.

Step 3: set s=0 and i=0.

Step 4: Take a number “a” an as input.

Step 5: Perform s=s+a and i=i+1.

Step 6: Check the condition (i<n), if it is true then go to step 3, else go to step 6.

Step 7: Display s as the sum and s/n as the average.

Step 8: Exit the program.

Program

#include <iostream> 
using namespace std;
int main()
{
int n,i;
float sum = 0;
float a;
float avg;
cout<<"How many numbers ?\n";
cin>>n;
i=0;
while(i<=n-1)
     { 
      cout <<"Enter a number \n";
      cin >>a;
       sum = sum+a;
       i++; 
     }
avg = sum/n;
cout<<"sum ="<<sum<<endl;
cout<<"Average="<<avg<<endl;
}

When the program is executed, the output is:

How many numbers 
5
Enter a number:1
Enter a number:2
Enter a number:3
Enter a number:4
Enter a number: 5
Sum =15
Average =3

Explanation:
In the above program, we get the sum of all the numbers. We accept each of the numbers provided by the user into the same variable and add them to the sum variable. After that, we find the average by using (sum/number of digits) and print the average variable.

Example 2: Factorial Program in C++ using while loop.

Factorial of 5 is:
5!=5×4×3×2×1
=20×6
=120
Here 5! Is pronounced as “five factorial”, also known as “5 bang” or “5 shreik”
“!” is factorial symbol

ALGORITHM:

Step 1: Start.

Step 2: Declare variables n, factorial, and i.

Step 3: Initialize the following variables:

Factorial =1

i=1

Step 4: Read the value of n.

Step 5: Repeat the following steps until i=n

Factorial=factorial×i

i=i+1

Step 6: Display factorial.

Step 7: Stop.

Program for finding factorial of a number using WHILE loop:

#include <iostream>  
using namespace std;  
int main()  
{  
   int i,factorial=1,n;    
  cout<<"Enter a Number: ";    
  cin>>n;   
i=1;
while(i<=n) 
{    
      factorial=factorial*i; 
      i++ ;  
    }    
  cout<<"Factorial of " <<n<<" is: "<<factorial<<endl;  
  return 0;  
}  

Output:

Enter a number:
5
Factorial of 6 is 
120

Explanation

In the first iteration, i=1 and factorial =1 and n=5, i.e., (i<=n).
So, factorial =1×1=1. [factorial=factorial×i]
Now, i is increment and it becomes 2

In the second iteration, i=2 and factorial =1 and n=5i.e., (i<=n).
So, factorial =1×2=2. [factorial=factorial×i]
Now, i is increment and it becomes 3

In the third iteration, i=3 and factorial =1 and n=5, i.e., (i<=n).
So, factorial =2×3=6. [factorial=factorial×i]
Now, i is increment and it becomes 4

In the fourth iteration, i=4 and factorial =6 and n=5, i.e., (i<=n).
So, factorial =6×4=24. [factorial=factorial×i]
Now, i is increment and it becomes 5

In the fifth iteration, i=5 and factorial =24 and n=5, i.e., (i<=n).
So, factorial =24×5=120. [factorial=factorial×i]
Now, i is increment and it becomes 6

In sixth iteration, i=6 i.e (i>n), the loops get terminated and prints the answer of factorial 5 is 120.

Example 3: LINEAR SEARCH

Linear search, also known as sequential search, is a searching technique in which we have some particular data in a data structure like array data structure. In this search, we need to find a specific element called a key or number.

To identify the key, traverse all the elements of data structure from start to end one by one and comparing each data structure element to the specified key or number.

In the case of an array, we compare each element and check that if the supplied key or number is present at any index.

Assume that the array which is a linear data sctructure includes unique values, then there are two possible results.

1. A linear search is successful when the value in an array at an index matches the key, which we find in the array.

2.A linear search fails to locate a key, when the key does not exist in the data.

Algorithm:

Step 1: Start.

Step 2: Declare array a and variables count,I, num.

Step 3: Input the elements in the array. 

Step 4: Input for count, the num to be searched.

Step 5: If (a[i] = num), then display Number is present at location (i+1)

Step 6: if (i=count), then display Number is not present in the array

Step 7: Stop.

Program:

#include <iostream> 
using namespace std;
int main() 
{
        int input[100], count, i, num ;
         cout << "Enter Number of Elements in Array\n";
         cin >> count;
         cout << "Enter"<< count<<"numbers\n";
                 // Read array elements 
    i=0;
 while (i<count)
              { 
                 cin>>input[i];
                i++;
              }
         cout << "Enter a number to serach in Array\n";
         cin>>num;


         // search num in inputArray from index 0 toelementCount-1 //
         i=0;
        while(i<count)
                {
                        if(input[i] == num)
                              {
                               cout << " TheElement found at index " << i;
                                i++;
                               break;
                              }
                }
           if(i==count)
                  {
                      cout << "Element Not Present in Input Array\n";
                  }
          return 0;
     }

Output is:

Enter the number of Elements in the Array
6
Enter 5 numbers 
12  23  25  37  45  14
Enter a number to search in the Array
37
The Element found at index 3

Related Topics

Floating Point Operations and Associativity in C, C++ and Java

In this tutorial, we are going to compare Floating-point operations and the concept of associativity. Before we apply the concept of associativity in the floating-point operations in all three programming...

3 minutes read.

How to create a directory or folder in C/C++?

A directory is to lists all files and subdirectories in a directory, set of the files will be kept in the directory, which is a location. A subdirectory is a...

5 minutes read.

How to enter a name in C++

A name is a string or array of characters or letters. The string is one of the most helpful data types offered by the C++ library. A string helps the...

4 minutes read.

Quick Sort in C++

Quick sort is an efficient, in-place, comparison-based sorting algorithm that uses a divide-and-conquer strategy to sort an array or list of elements. First a pivot element is selected from the...

4 minutes read.

C++ Inheritance

What do you mean by Inheritance ? The ability to define new classes based on existing classes in order to reuse and organise code is referred to as inheritance. Single inheritance...

7 minutes read.

How to create a table in C++

C++ is a programming language that has evolved as an improvement of c language. It includes an object-oriented archetype. C++ programming language is a compiled language that complies with the...

3 minutes read.

While Loop Examples in C++

While Loop A while loop repeats all code in its body, also known as a while statement, as long as a specific condition is satisfied. The loop ends if or when...

4 minutes read.

This keyword in C++

This keyword in C++ is a pointer which points to the object. It is passed as an argument to functions which helps in accessing the object. It is used for a...

3 minutes read.

Substring in C++

A substring is a function in c++ that is imported from the string library. An element of a string is called a substring. A substring contains two parameters length and...

2 minutes read.

C++ References

C++ References An alias is a reference variable that is another name for a variable already in existence. If a relation is initialized with a variable, it is possible to use...

3 minutes read.

SET Data Structure in C++

Generally, in our home, we store food items in a fridge or kitchen efficiently to find them easily and use them. Similarly, in programming, we need to store the data...

6 minutes read.

Nullptr in C++

What is Nullptr in C++? A null pointer value is represented by the term nullptr. Use a null pointer value to indicate that a native pointer type, inner pointer, or object...

3 minutes read.

Swap numbers in C++

Swap numbers Swapping refers to interchanging values between two variables. Swapping is important and easy to understand programming logic in the world of coding. Though it is used in the programming...

4 minutes read.

C++ Close file

C++ File Handling close() Function A file which is opened while reading or writing in file handling must be closed after performing an action on it. The close() function is used to close...

2 minutes read.

Include Guards in C++

In C++ programming, we frequently utilize a class more than once, so it is necessary to create a header file and include it in the main program. Now, occasionally a...

3 minutes read.

Function Pointer in C++

Definition: A function pointer in C++ is the same as a usual pointer which is used to point some variables. Function pointers are used to point functions or say store the...

4 minutes read.

C++ Type Casting

The type casting of variables in the C++ programming language will be covered in this section. The term "type casting" describes how software converts one data type to another. There...

9 minutes read.

How to find the length of the vector in C++

Like dynamic arrays, vectors can automatically adjust their size when an element is added or removed, and the container manages its storage. Because vector items are stored in contiguous storage, iterators...

3 minutes read.

What does Buffer Flush mean in C++

A buffer flush, to explain simple layman's terms, is nothing but the transfer of computer data which is being stored in a rentable temporary memory of your computer running either...

3 minutes read.

Random Number Generator in C++

In programming, we need to frequently create the randomly. For example, a dice game, handing out cards to players, apps for rearranging tunes, etc. T There are two tools available in...

4 minutes read.