C언어 ceil()

John Jeong (토론 | 기여)님의 2018년 3월 8일 (목) 00:15 판 (새 문서: ==개요== ;C언어 ceil() ;C Language ceil() *소수점 이하 올림 (Round up value) ==문법== *헤더 <source lang='C'> math.h </source> *정의 <source lang='C'> double ceil (d...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

C언어 ceil()
C Language ceil()
  • 소수점 이하 올림 (Round up value)

2 문법

  • 헤더
C
Copy
math.h
  • 정의
C
Copy
double ceil (double x);

3 예시

C
Copy
#include <stdio.h>
#include <math.h>

int main()
{
    printf("2.4 → %.1lf\n", ceil(2.4)); // 2.4 → 3.0
    printf("3.7 → %.1lf\n", ceil(3.7)); // 3.7 → 4.0

    return 0;
}

4 같이 보기