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

2

java format 2 decimal places

 
package org.arpit.java2blog;
 
public class StringFromatformatDouble {
 
    public static void main(String[] args) {
        double d = 2.456534;
        System.out.println("Double upto 2 decimal places: "+String.format("%.2f",d));
    }
}
 
Posted by: Guest on March-08-2021
2

specify decimal places java

double test = 12.15;
DecimalFormat df = new DecimalFormat("#.0");
System.out.println(df.format(test)); // Console: 12.2
// # - prints a digit if provided, nothing otherwise
// . - indicates where to put the decimal seperator
// 0 - prints a digit if provided, 0 otherwise
Posted by: Guest on December-29-2020

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

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language