Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

C 언어의 if-else 문 설명

<시간/>

If-else 문은 true 및 false 조건을 처리합니다. 조건이 참일 때 'true block'이 실행되고, 조건이 false일 때 'false block'(또는) 'else block'이 실행됩니다.

구문

아래 주어진 구문을 참조하십시오 -

if (condition){
   True block statement(s)
}else{
   False block statement(s)
}

C 언어의 if-else 문 설명

ifelse 문의 작업

  • if else 조건에서 조건이 참이면 참 블록 문장으로 들어가 연산을 실행하고 블록을 빠져 나온다.

  • 조건이 거짓이면 if 조건에 따라 거짓 블록인 else 블록으로 진입하여 해당 else 블록을 실행하고 해당 else 블록이 존재합니다.

예시

다음은 If 및 If Else 조건부 연산자를 실행하는 C 프로그램입니다 -

#include<stdio.h>
void main (){
   int a=4;
   printf("Enter the value of a: \n");
   scanf("%d",&a);
   if(a%2==1){
      printf("a is odd number \n");
   }else{
      printf("a is even number");
   }
}

출력

다음 출력이 표시됩니다 -

Run 1: Enter the value of a: 26
a is even number
Run 2: Enter the value of a: 53
a is odd number