Quote (Wacko @ 1 Mar 2013 03:44)
Got the program working but one of my variables is a Float and if i declare it to be 2.75 ada displays it as 2.75000E+00 which is ugly :|
if you can't do it otherwise split the number into three parts: whole number part, ".", tenth, hundredth
(have done that myself to create tidy outputs with other programming languages though - you need "tenth" and "hundredth" to accommodate cases where the "tenth" is zero)