1. 程式人生 > >蒙特卡洛方法近似求解PI

蒙特卡洛方法近似求解PI

本文為博主原創文章,轉載請註明出處。

public class T {

    // 迴圈次數
    private static int LOOP = 100000;

    // 圓的半徑
    private static double R = 0.5;

    // 半徑的平方
    private static double R2 = Math.pow(R, 2);

    // 判斷是否在園內
    private static boolean isInner(double x, double y) {
        return R2 >= Math.pow(R - x, 2) + Math.pow(R - y, 2);
    }

    public static void main(String[] args) {
        // 是否在圓類計數
        int flag = 0;

        for (int i = 0; i < LOOP; i++) {
            double x = Math.random();
            double y = Math.random();
            if (isInner(x, y)) {
                flag++;
            }
        }
        System.out.println("Pi = " + (double) flag / LOOP * 4);
    }
}