我的代码如下:- class demo
- {
- public static void main(String[] args)
- {
- double pi,a=0,b=0,temp=0,previoustemp=1;
- int count=0;
- for (int x=3;Math.abs(previoustemp-temp)>Double.MIN_NORMAL;x+=2 ) //
- {
- previoustemp = temp;
- count++;
- if (count%2!=0)
- a-=(1.0/x);
- else
- a+=1.0/x;
- temp = (1.0+a);
- }
-
- System.out.println("pi="+4*temp);
- }
- }
复制代码 程序为什么不出来结果,求解 |