소수 이하자리수의 올림과 내림함수(ceil, floor)에 대해 알아보는 프로그램
#include <stdio.h>
#include <math.h>
int main(void)
{
double x=123.54, y=-123.54;
printf("ceil(%f) =%f\n", x, ceil(x));
printf("floor(%f) =%f\n", x, floor(x));
printf("ceil(%f) =%f\n", y, ceil(y));
printf("floor(%f) =%f\n", y, floor(y));
return 0;
}
// 실행 결과
#include <stdio.h>
#include <math.h>
int main(void)
{
double x=123.54, y=-123.54;
printf("ceil(%f) =%f\n", x, ceil(x));
printf("floor(%f) =%f\n", x, floor(x));
printf("ceil(%f) =%f\n", y, ceil(y));
printf("floor(%f) =%f\n", y, floor(y));
return 0;
}
// 실행 결과
'공부 > c언어' 카테고리의 다른 글
[c언어] 지수, 로그 계산 함수(exp, frexp, log, log10, sqrt) (0) | 2011.05.19 |
---|---|
[c언어] 절대값 변환 함수(abs, labs, fabs) (0) | 2011.05.16 |
[c언어] 문자들이 연속하는 길이를 계산(strspn, strcspn) (0) | 2011.05.15 |
[c언어] 문자열을 검색하는 함수(strstr, strpbrk) (0) | 2011.05.15 |
[c언어] 문자열에 대해 특정 문자의 위치를 검색하는 함수(strchr, strrchr) (0) | 2011.05.15 |