Else - 사다리가 다방향 의사결정을 작성하는 가장 다재다능한 방법이라면.
else if ladder 구문은 다음과 같습니다 -
if (condition1) stmt1; else if (condition2) stmt2; - - - - - - - - - - else if (condition n) stmtn; else stmt x;
아래 순서도를 참고하세요 -
다음은 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); } }
위 프로그램을 실행하면 다음과 같은 결과가 나옵니다 -
Enter the values of a,b,c,d: 2 3 4 5 5 is the largest
위 내용은 C 언어에서 "else if ladder" 조건문을 사용하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!