How can i print the salary here with 2 decimal places? like 410.00 (not 410.0)? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can i print the salary here with 2 decimal places? like 410.00 (not 410.0)?

https://code.sololearn.com/c7FwBJR9eDCM/?ref=app

29th Sep 2017, 5:40 AM
Jan Paul Echaveria
Jan Paul Echaveria - avatar
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);
29th Sep 2017, 5:47 AM
Kamil
Kamil - avatar