Development Class Java

/**
 *Output:
|    123.12|
|123.12    |
 */
import java.util.Formatter;
public class MainClass {
    public static void main(String args[]) { 
      Formatter fmt = new Formatter(); 
   
      // Right justify by default 
      fmt.format("|%10.2f|", 123.123); 
      System.out.println(fmt); 
   
      // Now, left justify. 
      fmt = new Formatter(); 
      fmt.format("|%-10.2f|", 123.123); 
      System.out.println(fmt); 
    } 
}