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;
}
展开
 我来答
寒寒家
推荐于2017-10-06 · TA获得超过2921个赞
知道大有可为答主
回答量:1482
采纳率:100%
帮助的人:1985万
展开全部
//您好感觉您的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;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式