Contact: aviboots(AT)netvision.net.il
40,855 questions
53,260 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 */