请问这个程序怎么写
小白一个 打算自学c语言 遇到一个问题可是看不懂怎么写 问题有些简单 但希望大神们 告诉我怎么写
要求
不能增行删行
求前n项和 x=2.5,n=15时 函数值为1.917814
#include <stdio.h>
#include <math.h>
double fun(double x, int n)
{ double f, t; int i;
/**********found**********/
f = ___1___;
t = -1;
for (i=1; i<n; i++)
{
/**********found**********/
t *= (___2___)*x/i;
/**********found**********/
f += ___3___;
}
return f;
}
main()
{ double x, y;
x=2.5;
y = fun(x, 15);
printf("\nThe result is :\n");
printf("x=%-12.6f y=%-12.6f\n", x, y);
getchar();
}