C语言math头文件(math.h)中trunc函数的用法及代码示例。
用法:
double trunc ( double x);
float truncf ( float x);
long double truncl (long double x);
截断值
标头<tgmath.h>提供此函数的type-generic宏版本。
参数
- x
- 要截断的值。
返回值
最接近的整数值,其大小不大于x(作为浮点值)。示例
/* round vs floor vs ceil vs trunc */
#include <stdio.h> /* printf */
#include <math.h> /* round, floor, ceil, trunc */
int main ()
{
const char * format = "%.1f \t%.1f \t%.1f \t%.1f \t%.1f\n";
printf ("value\tround\tfloor\tceil\ttrunc\n");
printf ("-----\t-----\t-----\t----\t-----\n");
printf (format, 2.3,round( 2.3),floor( 2.3),ceil( 2.3),trunc( 2.3));
printf (format, 3.8,round( 3.8),floor( 3.8),ceil( 3.8),trunc( 3.8));
printf (format, 5.5,round( 5.5),floor( 5.5),ceil( 5.5),trunc( 5.5));
printf (format,-2.3,round(-2.3),floor(-2.3),ceil(-2.3),trunc(-2.3));
printf (format,-3.8,round(-3.8),floor(-3.8),ceil(-3.8),trunc(-3.8));
printf (format,-5.5,round(-5.5),floor(-5.5),ceil(-5.5),trunc(-5.5));
return 0;
}
输出:
value round floor ceil trunc ----- ----- ----- ---- ----- 2.3 2.0 2.0 3.0 2.0 3.8 4.0 3.0 4.0 3.0 5.5 6.0 5.0 6.0 5.0 -2.3 -2.0 -3.0 -2.0 -2.0 -3.8 -4.0 -4.0 -3.0 -3.0 -5.5 -6.0 -6.0 -5.0 -5.0 |
相关用法
- C语言 cos用法及代码示例
- C语言 sin用法及代码示例
- C语言 tan用法及代码示例
- C语言 acos用法及代码示例
- C语言 asin用法及代码示例
- C语言 atan用法及代码示例
- C语言 atan2用法及代码示例
- C语言 cosh用法及代码示例
- C语言 sinh用法及代码示例
- C语言 tanh用法及代码示例
- C语言 acosh用法及代码示例
- C语言 asinh用法及代码示例
- C语言 atanh用法及代码示例
- C语言 exp用法及代码示例
- C语言 frexp用法及代码示例
- C语言 ldexp用法及代码示例
- C语言 log用法及代码示例
- C语言 log10用法及代码示例
- C语言 modf用法及代码示例
- C语言 exp2用法及代码示例
- C语言 expm1用法及代码示例
- C语言 ilogb用法及代码示例
- C语言 log1p用法及代码示例
- C语言 log2用法及代码示例
- C语言 logb用法及代码示例
- C语言 scalbn用法及代码示例
- C语言 scalbln用法及代码示例
- C语言 pow用法及代码示例
- C语言 sqrt用法及代码示例
- C语言 cbrt用法及代码示例
- C语言 hypot用法及代码示例
- C语言 erf用法及代码示例
- C语言 erfc用法及代码示例
- C语言 tgamma用法及代码示例
- C语言 lgamma用法及代码示例
- C语言 ceil用法及代码示例
- C语言 floor用法及代码示例
- C语言 fmod用法及代码示例
- C语言 round用法及代码示例
- C语言 lround用法及代码示例
- C语言 llround用法及代码示例
- C语言 rint用法及代码示例
- C语言 lrint用法及代码示例
- C语言 llrint用法及代码示例
- C语言 nearbyint用法及代码示例
- C语言 remainder用法及代码示例
- C语言 remquo用法及代码示例
- C语言 copysign用法及代码示例
- C语言 nextafter用法及代码示例
- C语言 nexttoward用法及代码示例
- C语言 fdim用法及代码示例
- C语言 fmax用法及代码示例
- C语言 fmin用法及代码示例
- C语言 fabs用法及代码示例
- C语言 abs用法及代码示例
- C语言 fma用法及代码示例
- C语言 isfinite用法及代码示例
- C语言 isgreater用法及代码示例
- C语言 isgreaterequal用法及代码示例
- C语言 isless用法及代码示例
- C语言 islessequal用法及代码示例
- C语言 islessgreater用法及代码示例
- C语言 isunordered用法及代码示例
注:本文由纯净天空筛选整理自C标准库大神的英文原创作品 C trunc function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。