Answers for "how to make a float have two decimal places in java"

13

how to set 2 decimal places in java

DecimalFormat df = new DecimalFormat();
df.setMaximumFractionDigits(2);
System.out.println(df.format(decimalNumber));
Posted by: Guest on August-05-2020
2

how to format a double in java to 2 decimal places

DecimalFormat df = new DecimalFormat("#.00");
Posted by: Guest on May-16-2020

Code answers related to "how to make a float have two decimal places in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language