in reply to Rounding numbers output

If you want rounding, you could use sprintf like this:
  print sprintf("%.0f\n", 345.234);
  print sprintf("%.0f\n", 89.7);
This represent reality a bit better, IMHO.

Arjen