c语⾔mod函数,modff-[C语⾔中⽂开发⼿册]-在线原⽣⼿册-php
中⽂⽹
在头⽂件中定义float      modff( float arg, float* iptr );(1)(since C99)
double      modf( double arg, double* iptr );(2)
long double modfl( long double arg, long double* iptr );(3)(since C99)
1-3)将给定的浮点值分解arg为整数和⼩数部分,每部分具有相同的类型和符号arg。整数部分(浮点格式)存储在指向的对象中iptr。
参数
arg-浮点值iptr-指向浮点值来存储整数部分php手册官方中文版
返回值
如果没有错误发⽣,返回与⼩数部分x相同的符号x。积分部分被放⼊到所指的值中iptr。
返回的值和存储的值的和*iptr给出arg(允许舍⼊)。
错误处理
此函数不受在math_errhandling中指定的任何错误的影响。
如果实现⽀持IEEE浮点运算(IEC 60559),
如果arg是±0,则返回±0,并存储±0 *iptr。
如果arg是±∞,返回±0,并存储±∞ *iptr。
如果arg是NaN,则返回NaN,并存储NaN *iptr。
返回的值是精确的,当前舍⼊模式被忽略
笔记
该函数的⾏为如同执⾏如下:
double modf(double value, double *iptr){#pragma STDC FENV_ACCESS ON
int save_round = fegetround();    fesetround(FE_TOWARDZERO);    *iptr = std::nearbyint(value);    fesetround(save_round);    re
#include #include #include
int main(void){
double f = 123.45;    printf("Given the number %.2f or %a in hex,\n", f, f);
double f3;
double f2 = modf(f, &f3);    printf("modf() makes %.2f + %.2f\n", f3, f2);
int i;
f2 = frexp(f, &i);    printf("frexp() makes %f * 2^%d\n", f2, i);
i = ilogb(f);    printf("logb()/ilogb() make %f * %d^%d\n", f/scalbn(1.0, i), FLT_RADIX, i);
// special values
f2 = modf(-0.0, &f3);    printf("modf(-0) makes %.2f + %.2f\n", f3, f2);
f2 = modf(-INFINITY, &f3);    printf("modf(-Inf) makes %.2f + %.2f\n", f3, f2);}
可能的输出:
Given the number 123.45 or 0x1.edccccccccccdp+6 in hex,modf() makes 123.00 + 0.45frexp() makes 0.964453 * 2^7logb()/ 0) makes -0.00 + -0.00modf(-Inf) makes -INF + -0.00
参考
C11标准(ISO / IEC 9899:2011):7.12.6.12 modf函数(p:246-247)
F.10.3.12 modf函数(p:523)
C99标准(ISO / IEC 9899:1999):7.12.6.12 modf函数(p:227)
F.9.3.12 modf函数(p:460)
C89 / C90标准(ISO / IEC 9899:1990):4.5.4.6 modf函数

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。