Answers for "java print with 1 decimal"

4

print up to 2 decimal in java

System.out.printf("%.2f", value);
Posted by: Guest on November-05-2020
7

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

Code answers related to "java print with 1 decimal"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language