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