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