how to make to two decimal places in java code example
Example 1: decimal up to 6 places in java
double num = 1.34567;
System.out.format("%.4f", num);
Example 2: java 2 decimals
double res = Math.round(a * 100) / 100;
double num = 1.34567;
System.out.format("%.4f", num);
double res = Math.round(a * 100) / 100;