扫描二维码下载沐宇APP

沐宇

微信扫码使用沐宇小程序

沐宇

c语言pow怎么计算次幂

扬州沐宇科技
2024-05-27 14:24:07
c语言

在C语言中,可以使用pow()函数来计算次幂。该函数需要包含<math.h>头文件。

例如,要计算2的3次幂,可以使用以下代码:

#include <stdio.h>
#include <math.h>

int main() {
    double base = 2.0;
    double exponent = 3.0;
    double result = pow(base, exponent);
    
    printf("%f raised to the power of %f is %f\n", base, exponent, result);
    
    return 0;
}

运行以上代码,将输出:

2.000000 raised to the power of 3.000000 is 8.000000

这样就可以使用pow()函数计算次幂了。

扫码添加客服微信