Java tutorial
import java.io.*; public class Main { public static void main(String[] args) { double x = 12345678; PrintStream ps = new PrintStream(System.out); // print double ps.print(x); // flush the stream ps.flush(); } }