发布网友 发布时间:2022-04-25 20:45
共4个回答
热心网友 时间:2022-06-17 06:31
C语言中计算x的n次方可以用库函数pow来实现。函数原型:double pow(double x, double n)。
具体的代码如下:
#include <stdio.h>
#include <math.h>
int main( )
{
printf("%f",pow(x,n));
return 0;
}
注:使用pow函数时,需要将头文件#include<math.h>包含进源文件中。
扩展资料:
使用其他的方法得到x的n次方:
#include<stdio.h>
double power(double x,int n);
main( )
{
double x;
int n;
printf("Input x,n:");
scanf("%lf,%d",&x,&n);
printf("%.2lf",power(x,n));
}
double power(double x,int n)
{
double a=1.0;
int i;
for(i=1;i<=n;i++)
a*=x;
return a;
}
热心网友 时间:2022-06-17 06:32
#include<math.h>热心网友 时间:2022-06-17 06:32
“#include<math.h>热心网友 时间:2022-06-17 06:33
#include<math.h>