in reply to Formatting numbers

Your problem comes from the fact that you assign "1.25000000" as a string value somewhere. Either use a numeric literal:
my $var = 1.25000000; print $var;
or force numeric context in your print:
my $var = "1.25000000"; print $var + 0;