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