Contact: aviboots(AT)netvision.net.il
39,859 questions
51,780 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 */