Wurzel-Applet


  double wurzel(double a, double x){
if (Math.abs(x*x-a)<0.00001) {
return x;
}
else {
return wurzel(a,0.5*(x+ a/x));
}