Java tutorial
import java.io.*; public class Main { public static void main(String[] args) { float f = 1234.56f; PrintWriter pw = new PrintWriter(System.out); // print float pw.print(f); // change the line pw.println(); // print another float pw.print(1.23f); // flush the writer pw.flush(); } }