liyujie
2025-08-28 d9927380ed7c8366f762049be9f3fee225860833
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Concurrent computation of pi.
// See https://goo.gl/la6Kli.
//
// This demonstrates Go's ability to handle
// large numbers of concurrent processes.
// It is an unreasonable way to calculate pi.
package main
 
import (
   "fmt"
   "math"
)
 
func main() {
   fmt.Println(pi(5000))
}
 
// pi launches n goroutines to compute an
// approximation of pi.
func pi(n int) float64 {
   ch := make(chan float64)
   for k := 0; k <= n; k++ {
       go term(ch, float64(k))
   }
   f := 0.0
   for k := 0; k <= n; k++ {
       f += <-ch
   }
   return f
}
 
func term(ch chan float64, k float64) {
   ch <- 4 * math.Pow(-1, k) / (2*k + 1)
}