Answers for "how to reduce a division to few decimal places in java"

2

android round double to 2 decimal

String.format("%.2f", d)
Posted by: Guest on May-01-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 "how to reduce a division to few decimal places in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language