Contact: aviboots(AT)netvision.net.il
41,656 questions
54,319 answers
573 users
public class MyClass { public static void main(String args[]) { double root4th, n = 100; root4th = Math.pow(n, (0.25)); System.out.println(root4th); } } /* run: 3.1622776601683795 */
public class MyClass { public static void main(String args[]) { double root4th, value = 100; root4th = Math.pow(value, 1.0 / 4); System.out.println(root4th); } } /* run: 3.1622776601683795 */