/** Klasse zum Wurzel Ziehen */ public class Wurzel { /** Zieht die n-te Wurzel einer Zahl */ public static double zahlHoch1Durchn(double zahl, int wurzelexponent) { return Math.pow(zahl, 1.0 / wurzelexponent); } }