C语言中power函数的用法是什么

   2025-02-19 7160
核心提示:在C语言中,power函数用于计算一个数的幂。函数原型为:double pow(double x, double y);参数x是底数,参数y是指数。函数返回x的

在C语言中,power函数用于计算一个数的幂。

函数原型为:

double pow(double x, double y);

参数x是底数,参数y是指数。函数返回x的y次方的结果。

示例代码:

#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函数计算了2的3次方,得到了8的结果。

 
 
更多>同类维修知识
推荐图文
推荐维修知识
点击排行
网站首页  |  关于我们  |  联系方式  |  用户协议  |  隐私政策  |  网站留言