编写一个C语言代码:调用求x的n次幂的函数
时间: 2023-06-15 21:08:18 浏览: 133
以下是一个简单的求x的n次幂的函数,并且实现了调用该函数的代码:
```c
#include <stdio.h>
// 求x的n次幂
double power(double x, int n)
{
double res = 1.0;
for (int i = 0; i < n; i++)
{
res *= x;
}
return res;
}
int main()
{
double x = 2.0;
int n = 3;
double res = power(x, n);
printf("%.2lf的%d次幂是%.2lf\n", x, n, res);
return 0;
}
```
该代码中的 `power` 函数采用了循环的方式来计算幂,每次循环都将 `x` 乘上之前的结果,循环 `n` 次后得到最终的结果。在 `main` 函数中,调用 `power` 函数并将结果输出。
阅读全文