1 条题解

  • 0
    @ 2021-6-15 10:13:17

    C :

    #include<stdio.h>
    int main()
    {
    	int n=1;
    	double x,he=0.0;
    	while (n<=1000001)
    	{
    		if (n%4==1) x=1.0/n;
    		if (n%4==3) x=-1.0/n;
    		n+=2;
    		he+=x;
    	}
    	printf ("%lf",he*4);
    	return 0;
    }
    

    C++ :

    #include<stdio.h>
    
    int main()
    {
    	printf("3.141595");
    	return 0;
    }
    //0.785398
    
    • 1

    信息

    ID
    412
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者