发布网友 发布时间:2024-02-12 08:33
共4个回答
热心网友 时间:2024-11-24 07:06
#include "stdio.h"
#include "math.h"
void main()
{
int m=1,n=1;
double s=0,t=1;
while(fabs(t)>=1e-5)
{
t=n*1.0/m;
s+=t;
m+=3;
n=-n;
}
printf("%.5lf\n",s);
}
结果:
热心网友 时间:2024-11-24 07:06
#include <stdio.h>
热心网友 时间:2024-11-24 07:07
float s;热心网友 时间:2024-11-24 07:07
这个还比较难追问求答案啊