摘要:
函数名: ldexp 功 能:计算value*2的幂 用 法: doubleldexp(double value, int exp); 返回值:re=value*2^exp 程序例: #include"stdio.h" #includ... 阅读全文
摘要:
函数名: modf 功 能: 把数分为整数和小数 (The modf function breaks down the floating-pointvalue x into fractional and integer parts, each of which has thesame si... 阅读全文
摘要:
函数名: frexp 功 能: 把一个浮点数分解为尾数和指数 原 型: double frexp( double x, int *expptr ); float frexp( float x, int * expptr); // C++ only long double f... 阅读全文