给定程序中,函数fun的功能是:计算下式前n项的和作为

给定程序中,函数fun的功能是:计算下式前n项的和作为函数值返 回。

公式

 例如,当形参n的值为10时,函数返回:-0.204491。 请在程序的下划线处填入正确的内容并把下划线删除.使程序得 出正确的结果。注意:源程序存放在考生文件夹下的BLANK1.C中。 不得增行或删行,也不得更改程序的结构!

/**********code.c**********/
 #include <stdio.h>
double fun(int n)
 {
 int i, k;
 double s, t;
 s=0;
 /**********found**********/
 k=①______;
 for(i=1; i<=n; i++) 
{
 /**********found**********/
 t=②______;
 s=s+k*(2*i-1)*(2*i+1)/(t*t);
 /**********found**********/
 k=k*③______;
 }
 return s;
 }
 void main()
 {
int n=-1;
 while(n<0)
 {
 printf("Please input(n>0): ");
 scanf("%d",&n);
 }
 printf("\nThe result is: %f\n",fun(n));
 }
 /**********-code.c**********/


答案
第1空:1
第2空:2*i
第3空:(-1)

题目信息

题号:7652
题型:填空题
难度:普通