C 语言的 trunc()、truncf()、truncl()
我们将介绍三个函数。这些函数是 trunc()、truncf() 和 truncl()。这些函数用于将浮点值转换成截断形式。
trunc() 函数
此函数用于截断 double 类型的值,并只返回整数部分。其语法如下。
double trunc(double argument)
示例
#include <stdio.h> #include <math.h> main() { double a, b, x, y; x = 53.26; y = 75.86; a = trunc(x); b = trunc(y); printf("The value of a: %lf
",a); printf("The value of a: %lf
",b); }
输出
The value of a: 53.000000 The value of a: 75.000000
truncf() 函数
此函数用于截断 floating 类型的值,并只返回整数部分。其语法如下。
float tuncf(float argument)
示例
#include <stdio.h> #include <math.h> main() { float a, b, x, y; x = 53.26; y = 75.86; a = truncf(x); b = truncf(y); printf("The value of a: %f
",a); printf("The value of a: %f
",b); }
输出
The value of a: 53.000000 The value of a: 75.000000
truncl() 函数
此函数类似于 trunc() 或 truncf(),但主要差别在于,此函数用于截断 long double 类型的值,并只返回整数部分。
其语法如下。
long double truncl(long double argument)
示例
#include <stdio.h> #include <math.h> main() { long double a, b, x, y; x = 53547.55555555555; y = 78547.55555555523; a = truncl(x); b = truncl(y); printf("The value of a: %Lf
",a); printf("The value of a: %Lf
",b); }
输出
The value of a: 53547.000000 The value of a: 78547.000000
广告