TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
221 B

package main
import "fmt"
func main() {
const rounds = 100000000
x := 1.0
pi := 1.0
stop := float64(rounds + 2)
for i := 2.0; i <= stop; i++ {
x = -x
pi += x / (2.0*i - 1.0)
}
pi *= 4.0
fmt.Println(pi)
}