请输入您要查询的百科知识:

 

词条 _scalb
释义

函数简介

函数原型:double _scalb( double x, long exp );

所属库: float .h(是C语言标准库的一部分)

函数功能:以2的幂缩放自变量

程序示例

#include <stdio.h>

#include <float.h>

int main( void )

{

printf("%f\", _scalb(2.0, 3));

printf("%f\", _scalb(5.0, 4));

printf("%f\", _scalb(2.5, 2));

return 0;

}

输出:

16.000000

80.000000

10.000000

Press any key to continue

上面这个例子,分别计算了:

2.0乘以2的3次方

5.0乘以2的4次方

2.5乘以2的2次方

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/12/23 12:34:22