码迷,mamicode.com
首页 > 其他好文 > 详细

编写一个小程序计算圆周率π的值

时间:2017-03-17 14:52:03      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:color   ++   stat   value   print   nbsp   ber   main   style   


/**
 * 假设这个圆的半径是1。那么圆的面积就是π而外接正方形的面积是4.
 * 随便产生正方形中的一个点。
 * 该点落在这个圆内的概率是  
 * 圆面积/正方形面积 = π/4
 *
 */
public class GetValueπ {

    public static void main(String[] args) {
        final int Number_Of_Trials = 10000000;
        int numberOfHits = 0;
        
        for(int i = 0;i < Number_Of_Trials;i++){
            double x = Math.random() * 2.0 - 1;
            double  y = Math.random() * 2.0 - 1;
            if(x*x + y*y <= 1){
                numberOfHits++;
            }
            
            double pi = 4.0 * numberOfHits / Number_Of_Trials;
            System.out.println("PI is " + pi);
        }
    }
}

 

 

 

编写一个小程序计算圆周率π的值

标签:color   ++   stat   value   print   nbsp   ber   main   style   

原文地址:http://www.cnblogs.com/gsk616/p/6565707.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!