Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.io.*;

public class Main {

    public static void main(String[] args) {
        double d = 123.456;

        PrintWriter pw = new PrintWriter(System.out);

        // print doubles
        pw.println(d);
        pw.println(987.765);

        // flush the writer
        pw.flush();

    }
}