Else - If ラダーは、複数方向の決定を記述する最も一般的な方法です。
else if はラダーの構文が次のとおりです-
if (condition1) stmt1; else if (condition2) stmt2; - - - - - - - - - - else if (condition n) stmtn; else stmt x;
以下のフローチャートを参照してください-
以下は、Else If Ladder条件文を実行するCプログラムです。
ライブデモ
#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
以上がC言語で「else ifladder」条件文を使用するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。