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();
        // left justify. 
        fmt.format("|%-10.2f|", 123.123);
        System.out.println(fmt);
    }
}