Site icon T4Tutorials.com

Conditional Statements – C++

Conditional Statements in C++

C++ supports the conditional statement.

Some examples of conditional statements are mentioned below;

You can use these conditions to perform different actions for different decisions.

C++ has the following conditional statements:

Conditional Statements – C++

Statements in the boy of “if”  will execute, when the given condition is true

int X = 6;
if(X > 4)
{
cout << "X is greater than 4";
}

The given condition on line 2 is true, so line#3, 4, and 5 will execute.

Statements in the boy of “else” will execute, when the given condition in the “if” part is false.

    when else part execute in c++

 

 

 

 

 

 

 

 

 

 

Statements in the boy of “else if” will execute, when the given condition in “if” part is false and the condition in “else if”  part is true.

when else if part execute in C++

F

 

 

 

 

 

 

 

 

 

 

 

 

 

Exercise of If else statements (50+ Programs)

switch conditional statement is used to specify many alternative blocks of code to be executed.

Exercise of switch statements (50+ Programs)


Exit mobile version