Forrest


私信TA

用户名:dotcpp0717441

访问量:4006

签 名:

等  级
排  名 88
经  验 9136
参赛次数 1
文章发表 121
年  龄 0
在职情况 教师
学  校 优学乐程
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include<iostream>
#include<algorithm>
using namespace std;
const int N = 1e2 + 10;
long long  a[N];
int main()
{
	double res = 0;
	int n = 1, sign = 1;
	while(1.0/n > 0.000001){
		res += sign * 1.0 / n;
		n += 2; 
		sign *= -1;
	}
	printf("%.6f",res * 4);
	return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »