modf
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <math.h> 中定义
|
||
float modff( float x, float* iptr ); |
||
double modf( double x, double* iptr ); |
||
long double modfl( long double x, long double* iptr ); |
||
分解浮点值
x
整数和小数部分,每个部分具有相同类型和符号x
。 (浮点格式)的组成部分存储在指向的对象的iptr
.原文:
Decomposes given floating point value
x
into integral and fractional parts, each having the same type and sign as x
. The integral part (in floating-point format) is stored in the object pointed to by iptr
.目录 |
[编辑] 参数
arg | - | 浮点值
|
iptr | - | 指针浮点值来存储的组成部分
原文: pointer to floating point value to store the integral part to |
[编辑] 返回值
的小数部分与相同的符号
x
x
。不可分割的一部分投入指向的值iptr
.原文:
The fractional part of
x
with the same sign as x
. The integral part is put into the value pointed to by iptr
.[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
(C99) |
最接近的整数的幅值比不大于给定值 原文: nearest integer not greater in magnitude than the given value (函数) |
C++ documentation for modf
|