C 语言程序设计: 请在下列序号( 1 )—( 5 )所在留空处依次填写上正确内容。 功能:下列给定,求出下分数序列的前 n 项之和,各值通过函数值返回。 , , , , , ,...... 例如,若 n=5 ,则应输出 8.391667 。 程序: #include
#include
#include
double fun(int n) { /***********SPACE***********/ int a=2,b=1,c, ___(1)____; double s=0.0; for(k=1;k<=n;k++) { /***********SPACE***********/ s=s+(double) ___(2)____; c=a; /***********SPACE***********/ a= ___(3)____; b=c; } return s; } void main() { /***********SPACE***********/ int ___(4)____; printf("Please input (n>0):"); scanf("%d",&n); system("CLS"); /***********SPACE***********/ printf("\nThe value of function is:%lf\n",___(5)____); }