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