MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

/**
 *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);
    }
}