blob: 91060db94ffee2777f62af63f67430d7f6fa632f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# pi.awk --- compute the digits of pi
#
# Katie Wasserman, katie@wass.net
# August 2014
BEGIN {
digits = 100000
two = 2 * 10 ^ digits
pi = two
for (m = digits * 4; m > 0; --m) {
d = m * 2 + 1
x = pi * m
intdiv0(x, d, result)
pi = result["quotient"]
pi = pi + two
}
print pi
}
|