how to print float value up to 2 decimal places in java code example
Example 1: java double format
NumberFormat formatter = new DecimalFormat("#0.00");
System.out.println(formatter.format(4.0));
Example 2: how to set 2 decimal places in java
DecimalFormat df = new DecimalFormat();
df.setMaximumFractionDigits(2);
System.out.println(df.format(decimalNumber));
Example 3: 2 decimal places print format JAVA
printf(%.2f);