>  기사  >  백엔드 개발  >  C 언어에서 "else if ladder" 조건문을 사용하는 방법은 무엇입니까?

C 언어에서 "else if ladder" 조건문을 사용하는 방법은 무엇입니까?

PHPz
PHPz앞으로
2023-09-10 16:05:13791검색

Else - 사다리가 다방향 의사결정을 작성하는 가장 다재다능한 방법이라면.

else if ladder 구문은 다음과 같습니다 -

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

Flowchart

아래 순서도를 참고하세요 -

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

Example

다음은 Else If Ladder 조건문을 실행하는 C 프로그램입니다 -

Live Demonstration

#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);
   }
}

Output

위 프로그램을 실행하면 다음과 같은 결과가 나옵니다 -

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으로 문의하시기 바랍니다. 삭제