C++ Decision Making Statements

In this tutorial you will learn about the C++ Decision Making Statements and its application with practical example.

C++ Decision Making Statements

There are case where we want a a block of code to be executed when some condition is satisfied. In C++, we have rich set of Decision Making Statement that enable computer to decide which block of code to be execute based on some conditional choices. Decision making statement statements is also referred to as selection statements. Decision making statement evaluates single or multiple test expressions which results is “TRUE” or “FALSE”. The outcome of the test expression/condition helps to determine which block of statement(s) to executed if the condition is “TRUE” or “FALSE” otherwise.

In C++, we have following decision making statements –

cpp-decision-making-statements

C++ If Statement

If statement allows a block of code to be executed only when a specified condition is true. An if statement evaluates a boolean expression followed by one or more statements. The given boolean expression results in a boolean value that can only be either true or false.

Syntax:-

Here, Condition is a Boolean expression that results in either True or False, if it results in True then statements inside if body are executed, if it results in False then execution is skipped from if body.

C++ If Else Statement

In C++, when we want to execute a block of code when if condition is true and another block of code when if condition is false, In such a case we use if…else statement.

Syntax:-

Here, Condition is a Boolean expression that results in either True or False, if it results in True then statements inside if body are executed, if it results in False then statements inside else body are executed.

C++ If Else If Statement

When we want to add multiple condition checks in single if else statement then by using if else-if else statement we can easily add multiple conditions. In C++, if..else..if statement allows us add alternative set of test conditions in if..else statement using else-if and single else statements for if condition. In such way if..else..if statement is used to select one among several blocks of code to be executed.

Syntax:-

C++ Nested If Statement

In C++, when there is an if statement inside another if statement then it is known as nested if else. Nested if else can also be simplified using C++ Switch Case Statement.

Syntax:-

C++ Switch Case Statement

In C++, switch case statement is simplified form of the C++ Nested if else statement , it helps to avoid long chain of if..else if..else statements. A switch case statement evaluates an expression against multiple cases in order to identify the block of code to be executed.

Syntax:-

In this tutorial we have learn about the C++ Decision Making Statements and its application with practical example. I hope you will like this tutorial.