Amadeus's Log 勇瑜日志
Thursday, April 3, 2008
How to get the last 2 decimal digits using JAVA?
Example:
To get 0.99
from
double abcd =123456789012345.99;
Solution:
double a = 12345678901234.99*100;
String f = Long.toString(((long) a)%100);
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment