ホームページ  >  記事  >  バックエンド開発  >  C言語で「else ifladder」条件文を使用するにはどうすればよいですか?

C言語で「else ifladder」条件文を使用するにはどうすればよいですか?

PHPz
PHPz転載
2023-09-10 16:05:13790ブラウズ

Else - If ラダーは、複数方向の決定を記述する最も一般的な方法です。

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 ifladder」条件文を使用するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。