keep only 2 digits after decimal in java code example
Example 1: java string format .2f
String.format("%.2f", 3.45);
Example 2: Display double in decimal places java
double input = 3.14159265359;
System.out.format("double : %.2f", input); // 3.14
System.out.println("double : " + String.format("%.2f", input)); // 3.14