Nested if else block

We can use one if..else statement into another if...else statement, this type of statement is called nested if...else statement. it allows you to check multiple test conditions and execute different codes.

हम एक if else स्टेटमेंट के अन्दर दुसरे if else स्टेटमेंट को परिभाषित कर सकते है इन्हें नेस्टेड if else ब्लॉक कहा जाता है। यह प्रोग्रामर को दो या दो से अधिक कंडीशन चेक करने एवं उनके अलग-अलग कोड को रन करने की सुविधा प्रदान करता है  

Syntax:-
there are three types of Nested if..else statement-
1.)
if(condition){
if(condition){
statements;
.................
}
else{
statements;
.................
}
statements;
.................
}
else{
statements;
.................
}

2.) if else Ladder
if(condition){
statements;
.................
}
else{
if(condition){
statements;
.................
}
else{
statements;
.................
}
statements;
.................
}

3.)
if(condition){
if(condition){
statements;
.................
}
else{
statements;
.................
}
statements;
.................
}
else{
if(condition){
statements;
.................
}
else{
statements;
.................
}
statements;
.................
}

No comments:

Post a Comment