how can i round a double variables in java into only two decimals?
Asked
Active
Viewed 75 times
2 Answers
0
yourNewFormatedDouble = new DecimalFormat("#.##").format(yourOldDoubleHere);
Lukas Novicky
- 883
- 1
- 18
- 43
0
DecimalFormat df = new DecimalFormat("0.00##");
String result = df.format(myDouble);
Mureinik
- 277,661
- 50
- 283
- 320