value:=-10 if (value < 0) value:=||value term.char("-") if(value < 10) term.char("0") if(value < 100) term.char("0") term.dec(value) term.str(string(" "))
Comments
i find my value have minus
how can i padding just like
-10 = -010 , -1=-001 ?
thanks
How about posting the source code you have tried.
it my code
thanks