1#! /usr/bin/bc -lq 2 3scale = 0 4max = 100000 5 6for (i = 0; i < max; ++i) 7{ 8 print "sqrt(", rand(), ")\n" 9} 10