java print 2 decimal places code example
Example 1: print up to 2 decimal in java
System.out.printf("%.2f", value);
Example 2: java printf double 2 decimal places
printf("%. 2f", value);
Example 3: specify decimal places java
double test = 12.15;
DecimalFormat df = new DecimalFormat("#.0");
System.out.println(df.format(test));
Example 4: how to set 2 decimal places in java
DecimalFormat df = new DecimalFormat();
df.setMaximumFractionDigits(2);
System.out.println(df.format(decimalNumber));
Example 5: 2 decimal places print format JAVA
printf(%.2f);