Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Math
- php
- BOJ
- JavaScript
- DP
- Cleancode
- String
- BFS
- C
- greedy
- C언어
- Python
- Algospot
- Algorithm
- sorting
- udemy
- 정수론
- 따배씨
- BASIC
- 따라하며 배우는 C언어
- 백준
- 종만북
- graph
- dfs
- 생활코딩
- programmers
- web
- server
- 따라하면서 배우는 C언어
- 인프런
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 6.4 관계 연산자 본문
따배씨 - 따라하며 배우는 C언어
6강 반복문
6.4 관계 연산자 Relational Operators
- 관계 연산자 Relational Operators
- < is less than
- <= is less than or equal to
- == is equal to
- >= is greater than or equal to
- > is greater than
- != is not equal to
#include <stdio.h>
int main()
{
int n = 0;
while (n++ < 5) // n ++ < 5 is a relational expression
printf("%d", n);
// 12345
printf("\n");
char c = 'A';
while (c != 'Z')
printf("%c", c++);
// ABCDEFGHIJKLMNOPQRSTUVWXY
return 0;
}
#include <stdio.h>
#include <math.h> //fabs() - 절대값 호출
int main()
{
const double PI = 3.14159265358979;
double guess = 0.0;
printf("Input PI : ");
scanf("%lf", &guess);
// while (guess != PI)
while (fabs(guess - PI) > 0.01)
{
printf("Fool! Try again!\n");
scanf("%lf", &guess);
}
printf("Good!\n");
return 0;
}
- fabs() 함수를 이용하여 실수 비교의 오차범위를 설정
- 정수의 비교가 아닌, 실수의 비교시에는 정밀도 문제가 발생하기 때문에 오차범위를 설정해 주는게 좋다
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 6.7 관계연산자 우선순위 ~ 6.9 for 문의 유연한 사용 (0) | 2021.05.20 |
---|---|
[따배씨] 6.5 사실과 거짓 ~ 6.6 _Bool 자료형 (0) | 2021.05.19 |
[따배씨] 6.2 의사 코드 ~ 6.3 진입조건 루프 (0) | 2021.05.19 |
[따배씨] 6.1 while 반복 루프에서 scanf()의 반환값 사용하기 (0) | 2021.05.19 |
[C] 형 변환 Type Conversion (0) | 2021.05.18 |
Comments