Contact: aviboots(AT)netvision.net.il
41,230 questions
53,732 answers
573 users
public class Example { public static void main(String[] args) { double scientificd = 1.23456e4; System.out.println("double scientific notation: " + scientificd); } } /* run: double scientific notation: 12345.6 */