函数
<cmath> <ctgmath>

trunc

     double trunc  (     double x);      float truncf (      float x);long double truncl (long double x);
     double trunc (     double x);      float trunc (      float x);long double trunc (long double x);     double trunc (T x);           // additional overloads for integral types
截断值
x 向零取整,返回的整数值的大小不大于 x

头文件 <tgmath.h> 提供了此函数的类型通用宏版本。
此头文件(<cmath>)中为整型提供了额外的重载:这些重载在计算前有效地将 x 转换为 double(针对 T 是任何整型 定义)。

参数

x
要截断的值。

返回值

不大于 x 的最接近的整数值(作为浮点值)。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 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


另见