Answers for "how to make float 2 decimal places in java"

5

round off java 2 decimal places

class round{
    public static void main(String args[]){

    double a = 123.13698;
    double roundOff = Math.round(a*100)/100;

    System.out.println(roundOff);
}
}
Posted by: Guest on October-06-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
0

android java convert double to 2 decimal places

String stringDecimal = String.format("%.2f, d");
Posted by: Guest on March-18-2020
1

2 decimal places print format JAVA

printf(%.2f);
Posted by: Guest on April-21-2020

Code answers related to "how to make float 2 decimal places in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language