Site icon T4Tutorials.com

While loop Cplusplus

What is while loop?

While loop have the following properties;

When to use while loop?

What is the syntax of while loop?

Syntax
While (condition)

{

statements;

Loop increment;

}

Example:

1

2

3

4

5

6

7

8

9

10

11

12

13

 

#include<iostream>

using namespace std;

int main()

{

int number=1;

while(number<=10)

{

cout<<“number is “<<number<<endl;

number++;

}

cout<<“you are outside the loop”;

}

              

 

Output:
number is 1

number is 2

number is 3

number is 4

number is 5

number is 6

number is 7

number is 8

number is 9

number is 10

you are outside the loop

Line 5:

Line 6:

Line 7:

Line 9:

 

Test Your Understandings
1. If the given condition is false then no statement execute in while section? True / False
Answer - Click Here:
True
while(number<=10);

{

cout<<“number is “<<number<<endl;

number++;

}

2. What is the error in code above?

Answer - Click Here:
Error: while(number<=10);

Correct: while(number<=10)

 

Exit mobile version