Contact: aviboots(AT)netvision.net.il
39,855 questions
51,776 answers
573 users
public class MyClass { public static void main(String args[]) { int a = 12; float b = 8392.73f; double c = 3.14; System.out.println(Math.max(Math.max(a, b), c)); } } /* run: 8392.73046875 */