scalbn, scalbnf : 按整数缩放
#include <math.h>double scalbn(double x, int y);float scalbnf(float x, int y);```### 描述
scalbn 和 scalbnf 将 x 缩放 n,返回 x 乘以 2 的 n 次幂的结果。该结果是通过操作指数来计算的,而不是通过实际执行求幂或乘法。### 返回值
x 乘以 2 的 n 次幂。
---
**权威来源**: BUSMASTER DITA help source `scalbn.dita`, compiled into `BUSMASTER.CHM` with the application.