C语言 求高手求改错用递归计算编写一个函数:f(x,n)=x-x^+……+(-1)^n-1*x^n
求高手!!在线急等!!!总觉得错了好多,求改正!!!#include<stdio.h>#include<math.h>doubley(intx,intn){y=pow(-...
求高手!! 在线急等!!! 总觉得错了好多,求改正!!!
#include<stdio.h>
#include<math.h>
double y(int x, int n)
{
y = pow(-1, n-1) * pow(x, n);
printf("%f", y);
return 0;
}
int main()
{
int x, n;
scanf("%d%d", &x, &n);
y(x, n);
return 0;
} 展开
#include<stdio.h>
#include<math.h>
double y(int x, int n)
{
y = pow(-1, n-1) * pow(x, n);
printf("%f", y);
return 0;
}
int main()
{
int x, n;
scanf("%d%d", &x, &n);
y(x, n);
return 0;
} 展开
1个回答
展开全部
//您好感觉您的code问题有点儿多,自己写了一份
//感觉要不您看下我的code,看能否明白吧,可以对照着你的code看
//有不明白的地方,咱们可以交流
#include<stdio.h>
#include<math.h>
double tar_func(double x, int n){
if(n == 0){
return 0;
}
else{
return pow(-1.0, n-1) * pow(x, n) + tar_func(x,n-1);
}
}
int main(){
double x;
int n;
scanf("%lf %d", &x, n);
double res = tar_func(x, n);
printf("%lf\n", res);
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询