floor, floorf
바닥의 값을 계산합니다.
double floor(
double x
);
float floor(
float x
); // C++ only
long double floor(
long double x
); // C++ only
float floorf(
float x
);
매개 변수
- x
부동 소수점 값입니다.
반환 값
floor 함수 보다 작거나 같은 가장 큰 정수를 나타내는 부동 소수점 값을 반환 합니다 x.없음 오류가 반환이 됩니다.
입력 |
SEH 예외 |
Matherr 예외 |
---|---|---|
± QNAN, 찾기 |
없음 |
_DOMAIN |
floor스트리밍 SIMD 확장 2 (SSE2)을 사용 하 여 구현을 했습니다.참조 하십시오 _set_SSE2_enable 에 대 한 정보와 SSE2 구현을 사용 하 여 제한 합니다.
설명
C + + 수 오버, 오버 로드를 호출할 수 있도록 floor.C 프로그램에서 floor 항상 사용 하 고 double을 반환 합니다.
요구 사항
Function |
필수 헤더 |
---|---|
floor, floorf |
<math.h> |
추가 호환성 정보를 참조 하십시오. 호환성 소개에서 합니다.
예제
// crt_floor.c
// This example displays the largest integers
// less than or equal to the floating-point values 2.8
// and -2.8. It then shows the smallest integers greater
// than or equal to 2.8 and -2.8.
#include <math.h>
#include <stdio.h>
int main( void )
{
double y;
y = floor( 2.8 );
printf( "The floor of 2.8 is %f\n", y );
y = floor( -2.8 );
printf( "The floor of -2.8 is %f\n", y );
y = ceil( 2.8 );
printf( "The ceil of 2.8 is %f\n", y );
y = ceil( -2.8 );
printf( "The ceil of -2.8 is %f\n", y );
}