0
How can i print the salary here with 2 decimal places? like 410.00 (not 410.0)?
1 Answer
+ 8
this should work:
double value1 = 200.3456;
System.out.printf("Value: %.2f \n", value1);
double value2 = 200;
System.out.printf("Value: %.2f \n", value2);