delete pics to save space

This commit is contained in:
2023-08-03 09:22:52 +08:00
commit de60cd6ed4
1334 changed files with 66221 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#include<cstdio>
#include<cmath>
using namespace std;
int main()
{
double three=sqrt(3),add=0,x;
for(int i=1;i>0;i++)
{
x=(1.0/pow(three,i*2-1))/(double)(i*2-1);
if(x<0.000001) break;
if(i&1) add+=x;
else add-=x;
}
printf("%g\n",6*add);
return 0;
}