몽상실현개발주의

[따배씨] 6.4 관계 연산자 본문

Language/C

[따배씨] 6.4 관계 연산자

migrationArc 2021. 5. 19. 17:28

[따배씨] 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

 

실리콘 밸리의 프로그래머 : 네이버 블로그

안녕하세요! 홍정모 블로그에 오신 것을 환영합니다. 주로 프로그래밍 관련 메모 용도로 사용합니다. 강의 수강하시는 분들은 홍정모 연구소 카페로 오세요.

blog.naver.com

http://www.inflearn.com/course/following-c

 

홍정모의 따라하며 배우는 C언어 - 인프런 | 강의

'따배씨++'의 성원에 힘입어 새롭게 개발된 C 언어로 시작하는 프로그래밍 입문 강의입니다. '따배씨'와 함께 프로그래밍 인생을 업그레이드 해보세요., 따라하며 배우는 C언어 '따배씨++'의 성원

www.inflearn.com

 

Comments