अन्य - यदि सीढ़ी बहु-मार्गीय निर्णय लिखने का सबसे सामान्य तरीका है।
अन्य के लिए वाक्य रचना यदि सीढ़ी इस प्रकार है -
if (condition1) stmt1; else if (condition2) stmt2; - - - - - - - - - - else if (condition n) stmtn; else stmt x;
फ़्लोचार्ट
नीचे दिया गया फ़्लोचार्ट देखें -
उदाहरण
एल्स इफ लैडर कंडीशनल स्टेटमेंट को निष्पादित करने के लिए सी प्रोग्राम निम्नलिखित है -
#include<stdio.h> void main (){ int a,b,c,d; printf("Enter the values of a,b,c,d: "); scanf("%d%d%d%d",&a,&b,&c,&d); if(a>b){ printf("%d is the largest",a); } else if(b>c){ printf("%d is the largest",b); } else if(c>d){ printf("%d is the largest",c); } else{ printf("%d is the largest",d); } }
आउटपुट
जब उपरोक्त प्रोग्राम को निष्पादित किया जाता है, तो यह निम्नलिखित परिणाम उत्पन्न करता है -
Enter the values of a,b,c,d: 2 3 4 5 5 is the largest