首頁 >後端開發 >C++ >如何在C語言中使用「else if ladder」條件語句?

如何在C語言中使用「else if ladder」條件語句?

PHPz
PHPz轉載
2023-09-10 16:05:13814瀏覽

Else - 如果梯子是寫多路決策最通用的方式。

else if 梯子的語法如下-

if (condition1)
   stmt1;
else if (condition2)
   stmt2;
   - - - - -
   - - - - -
   else if (condition n)
      stmtn;
   else
      stmt x;

流程圖

#請參考下面給出的流程圖-

如何在C语言中使用“else if ladder”条件语句?

範例

以下是執行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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除