计算平方根的例子BEGIN { a = 3.7; x = a; while((x**2-a)**2 > 1e-12) { x = (x + a/x)/2;} print x }三次方,自己想下办法,得自己写