Development Class Java

public class MainClass{
  public static void main(String args[]) {
    System.out.printf("Line up positive and negative values:\n");
    System.out.printf("% ,.2f\n% ,.2f\n", 1234567.123, -1234567.123);
  }
}
//Line up positive and negative values:
// 1,234,567.12
//-1,234,567.12