06.05.2010, 16:29
Hey ya'll, can you show me how to do this?
That would print "0.00010", but I don't want it to print the last zero. How can I do it?
Same for that one, I don't want it to print the last 2 zeros.
Help


pawn Код:
new Float:fl = 0.00010;
printf("%f", fl);
pawn Код:
new Float:fl = 0.00100;
printf("%f", fl);
Help



