求π的方法

π的公式如下:

上这个代码:

package main

import (
	"fmt"
)

//pai后面100位:3.14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 34211 70679

//本程序的执行结果:精确到10位,看来还不够精确 3.1415926535 383965

const (
	count = 20000000000 //200亿次
)

func getPai() float64 {

	var num float64 = 1.0
	var pai float64 = 0
	var fenzi float64 = 1.0

	for i := 0; i < count; i++ {

		pai = pai + (fenzi / num)
		num += 2
		fenzi = -fenzi
	}

	return pai * 4
}

func main() {
	fmt.Printf("pai result: %v \n", getPai())
}


你可能感兴趣的:(求π的方法)