填空题

以下程序通过函数SunFun求
这里f(x)=x2+1,由F函数实现。请填空。
main()
printf("The sum=%d\n",SunFun(10));
SunFun(int n)
int x,s=0;
for(x=0;x<=n;x++)s+=F( 【14】 );
return s;

F(int x)
return( 【15】 );

【参考答案】

[14]x
[15]x*x+1或1+x*x