How to print a float with 2 decimal places in Java?

via_point picture via_point · Mar 29, 2010 · Viewed 705.6k times · Source

Can I do it with System.out.print?

Answer

Anthony Forloney picture Anthony Forloney · Mar 29, 2010

You can use the printf method, like so:

System.out.printf("%.2f", val);

In short, the %.2f syntax tells Java to return your variable (val) with 2 decimal places (.2) in decimal representation of a floating-point number (f) from the start of the format specifier (%).

There are other conversion characters you can use besides f:

  • d: decimal integer
  • o: octal integer
  • e: floating-point in scientific notation