Pages
(Move to ...)
Home
Java
Android
Php
Cake PHP
jQuery
Grails
All Pages
▼
Showing posts with label
Number Format
.
Show all posts
Showing posts with label
Number Format
.
Show all posts
Thursday, December 6, 2012
Java rounding off a float to two decimal places
›
double r = 5.1234 ; System . out . println ( r ); // r is 5.1234 int decimalPlaces = 2 ; BigDecimal bd = new BigDecimal ( r ); ...
›
Home
View web version