Else - 如果梯子是寫多路決策最通用的方式。
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 if ladder」條件語句?的詳細內容。更多資訊請關注PHP中文網其他相關文章!