http://qs321.pair.com?node_id=321668


in reply to Re: Re: Re: Zero Padding to the Right of the Decimal
in thread Zero Padding to the Right of the Decimal

you'll never exit the loop that way, because you never modify $i.
You could use +=, though :
my $i=0; while ($i <=100){ printf("%3.2f\n",$i+=0.01); }