c語(yǔ)言中冪函數(shù)如何表示

小億
673
2023-10-11 21:51:23

在C語(yǔ)言中,冪函數(shù)可以使用pow()函數(shù)來(lái)表示。該函數(shù)位于math.h頭文件中。

pow(x, y)函數(shù)的作用是計(jì)算x的y次冪。其中,x和y可以是整數(shù)、浮點(diǎn)數(shù)或雙精度數(shù)。

使用示例:

#include <stdio.h>
#include <math.h>
int main() {
double base = 2.0;
double exponent = 3.0;
double result = pow(base, exponent);
printf("%lf^%lf = %lf\n", base, exponent, result);
return 0;
}

輸出結(jié)果:

2.000000^3.000000 = 8.000000

在上述示例中,我們使用pow()函數(shù)計(jì)算了2的3次冪,結(jié)果為8.0。

0