| Author |
question about decimal output
|
dean martin
Greenhorn
Joined: Nov 17, 2003
Posts: 1
|
|
Ok, I have a java console program with a few equations, when the equation runs, the solution is a number like 31.5312256323421616 How do i get java to print out this with just the first two spots after the decimal? (31.53) I know that in C programming you simply do %.2f but i can't figure out how to do it in java. By the way, my java variable is a double.. thanks guys.
|
 |
Arun Boraiah
Ranch Hand
Joined: Nov 28, 2001
Posts: 233
|
|
Hi, You can explore java.text.DecimalFormat class to fulfill your requirement. -Arun
|
Sharing is learning
|
 |
 |
|
|
subject: question about decimal output
|
|
|