본문 바로가기
C/☞

[11] 연산자 : 비교연산자

by TR. 2020. 7. 14.

비교연산자

1) <

2) >

3) >=

4) <=

5) ==

6) !=

 

# include <Windows.h>
# include <stdio.h>

void main(){
	// 3. 비교연산자 : 결과값은 1(true) or 0(false)
    
	// 1) <
	// 2) >
	// 3) >=
	// 4) <=
	// 5) == 
	// 6) !=
    
    int a = 10;
    int b = 30;

	printf("%d", a < b);	printf("\n");
	printf("%d", a > b);	printf("\n");
	printf("%d", a <= b);	printf("\n");
	printf("%d", a <= b);	printf("\n");
	printf("%d", a == b);	printf("\n");
	printf("%d", a != b);	printf("\n");


	system("pause");
}

'C > ' 카테고리의 다른 글

[13] 연습문제 : 연산자  (0) 2020.07.14
[12] 연산자 : 논리연산자  (0) 2020.07.14
[10] 연산자 : 대입연산자  (0) 2020.07.14
[09] 연산자 : 산술연산자  (0) 2020.07.14
[08] 연산자  (0) 2020.07.14

댓글