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