double nearbyint(double x); 가장 가까운 정수
float nearbyintf(float x); 가장 가까운 정수
long double nearbyintl(long double x); 가장 가까운 정수
입력 매개 변수 리스트
x 실수
반환 값
x와 가장 가까운 정수
반환 형식이 실수 형식이지만 소수점 이하 자리는 언제나 0입니다.
사용 예
//C언어 표준 라이브러리 함수 가이드 //double nearbyint(double x); 가장 가까운 정수 //float nearbyintf(float x); 가장 가까운 정수 //long double nearbyintl(long double x); 가장 가까운 정수 #include <math.h> #include <stdio.h> int main(void) { printf("%f\n", nearbyint(1.4));//1 printf("%f\n", nearbyint(1.5));//2 printf("%f\n", nearbyint(1.6));//2 return 0; }
출력
1.000000 2.000000 2.000000