You are on page 1of 1

<a href=” https://www.teeztareen.com/2019/06/nested-if-statement-in-java-programming.

html”>
nested if statement in java programing </a>

Nested if statement in java programig


An if statement within an if statement is called if statement.in nested structure the control only enter
into the inner if only when the outer condition is true.only one block of the statement is executed and
the remaining blocks are skipped automatically.
The user can use many if statement inside an other if statement as required.the increase in the level of
the nesting increase the complexity of the nested if statement.
Syntax of the nested if statement.
If(condition)
If(condition)
{
If statement(s)
}
Else
{
Statement(s)
}
Else
{
statement(s)
}
Working of the nested if statement .
In nested if statement,the condition of outer is if is evaluated first. If it is true,the control enter in the
inner if block.if the condition is false then the inner if is skipped and control directly moves to the else
part of the outer if .if the outer if is true then the control inter into the inner if statement .the inner if
statement is evsluted according to the simple if statement .
Flowchart.
The flowchart of nested if statement is as follows;
<a href=” https://www.teeztareen.com/2019/06/nested-if-statement-in-java-programming.html”>
nested if statement in java programing </a>

You might also like