Development Java Tutorial

public class MainClass {
  public static void main(String[] a) {
    StringBuffer buf = new StringBuffer();
    java.util.Formatter formatter = new java.util.Formatter(buf);
    double x = 27.5, y = 33.75;
    formatter.format("x = %15.2f y = %14.3g", x, y);
    System.out.print(buf);
  }
}
x = 27.50 y = 33.8