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) {
        float x = 1.23f;

        PrintStream ps = new PrintStream(System.out);

        // print float
        ps.print(x);

        // flush the stream
        ps.flush();

    }
}