我这代码答案怎么老是0啊??
是关于上面 t=1-1/(2*2)-1/(3*3)-...1/(m*m) 的代码~~
/* Note:Your choice is C IDE */
#include "stdio.h"
float anwser=1.0 ;
int m,i ;
float func1 ( int x );
main()
{
printf ("please input a integer \n");
scanf ("%d",&m);
for (i=1 ;i<=m;i++) anwser -= func1 (i);
printf ("The anwser is %f\n",anwser);
}
float func1 (int x )
{
float h;
h = 1.0 / (x*x) ;
return h ;
}
这样就对了
My Blog: www.aiexp.info
虽然我的路是从这里开始的,但是这里不再是乐土.感谢曾经影响过,引导过,帮助过我的董凯,飞燕,leeco,starwing,Rockcarry,soft_wind等等等等.别了,BCCN.