> 백엔드 개발 > C++ > C의 else-if 래더 문 설명

C의 else-if 래더 문 설명

WBOY
풀어 주다: 2023-09-05 18:09:07
앞으로
1440명이 탐색했습니다.

이것은 다방향 결정을 작성하는 가장 일반적인 방법입니다.

구문

아래 구문을 참조하세요 -

if (condition1)
stmt1;
else if (condition2)
stmt2;
- - - - -
- - - - -
else if (condition n)
stmtn;
else
stmt x;
로그인 후 복사

C의 else-if 래더 문 설명

알고리즘

아래 알고리즘을 참조하세요 −

START
Step 1: Declare int variables.
Step 2: Read a,b,c,d values at runtime
Step 3: i. if(a>b && a>c && a>d)
Print a is largest
ii.else if(b>c && b>a && b>d)
Print b is largest
iii. else if(c>d && c>a && c>b)
Print c is largest
iv. else
print d is largest
STOP
로그인 후 복사

예제

다음은 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 && a>c && a>d){
      printf("%d is the largest",a);
   }else if(b>c && b>a && b>d){
      printf("%d is the largest",b);
   }else if(c>d && c>a && c>b){
      printf("%d is the largest",c);
   }else{
      printf("%d is the largest",d);
   }
}
로그인 후 복사

출력

다음 출력이 표시됩니다 −

Run 1:Enter the values of a,b,c,d: 2 4 6 8
8 is the largest
Run 2: Enter the values of a,b,c,d: 23 12 56 23
56 is the largest
로그인 후 복사

else ifladder를 사용하여 학생의 성적을 표시하는 다른 C 프로그램을 고려하세요. -

실시간 데모

#include<stdio.h>
int main(){
   int marks;
   printf("Enter the marks of a student:</p><p>");
   scanf("%d",&marks);
   if(marks <=100 && marks >= 90)
      printf("Grade=A");
   else if(marks < 90 && marks>= 80)
      printf("Grade=B");
   else if(marks < 80 && marks >= 70)
      printf("Grade=C");
   else if(marks < 70 && marks >= 60)
      printf("Grade=D");
   else if(marks < 60 && marks > 50)
      printf("Grade=E");
   else if(marks == 50)
      printf("Grade=F");
   else if(marks < 50 && marks >= 0)
      printf("Fail");
   else
      printf("Enter a valid score between 0 and 100");
   return 0;
}
로그인 후 복사

출력

다음 출력이 표시됩니다.

rreee

위 내용은 C의 else-if 래더 문 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:tutorialspoint.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿