f java 2 decimal places format code example
Example 1: how to set 2 decimal places in java
DecimalFormat df = new DecimalFormat();
df.setMaximumFractionDigits(2);
System.out.println(df.format(decimalNumber));
Example 2: 2 decimal places print format JAVA
printf(%.2f);