Use Formatter to vertically align numeric values. : Formatter « Development Class « Java






Use Formatter to vertically align numeric values.

  
import java.util.Formatter;

public class Main {
  public static void main(String[] argv) throws Exception {
    double data[] = { 12.3, 45.6, -7.89, -1.0, 1.01 };
    Formatter fmt = new Formatter();

    fmt.format("%12s %12s\n", "Value", "Cube Root");

    for (double v : data) {
      fmt.format("%12.4f %12.4f\n", v, Math.cbrt(v));
    }
    System.out.println(fmt);
  }
}
/*       Value    Cube Root
     12.3000       2.3084
     45.6000       3.5726
     -7.8900      -1.9908
     -1.0000      -1.0000
      1.0100       1.0033

*/

   
    
  








Related examples in the same category

1.Formatter: format(String format, Object... args)
2.Formatter: %g
3.Formatting time and date
4.Demonstrate the %n and %% format specifiers
5.Demonstrate a field-width specifier
6.Create a table of squares and cubes
7.Demonstrate the precision modifier
8.Demonstrate left justification
9.Demonstrate the space format specifiers
10.Limit the number of decimal digits by specifying the precision
11.Using group separators.
12.Show positive values with a leading + and negative values within parentheses.
13.Use Formatter to left-justify strings within a table.
14.Display several time and date formats
15.using the %t specifier with Formatter.
16.Display 12-hour time format
17.Display 24-hour time format.
18.Display short date format.
19.Display date using full names.
20.Display complete time and date information: using %T rather than %t.
21.Display hour and minute, and include AM or PM indicator.
22.The Time and Date Format Suffixes
23.locale-specific formatting.
24.Write formatted output directly to the console and to a file.
25.Formatter.ioException()
26.new Formatter(new OutputStream("test.fmt"))
27.Use arguments indexes to simplify the creation of a custom time and date format
28.Apply a mask to String