KUJUNTI.ID MINISH3LL
Path : /proc/self/root/usr/share/doc/gawk/examples/prog/
(S)h3ll Cr3at0r :
F!le Upl0ad :

B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H

Current File : //proc/self/root/usr/share/doc/gawk/examples/prog/pi.awk


# 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
}

© KUJUNTI.ID