MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

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