Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 line
198B

  1. #include "fcpp.hh"
  2. double wurzel (double a)
  3. {
  4. double x=1.0;
  5. while (fabs(x*x-a)>1E-12)
  6. x = 0.5*(x+a/x);
  7. return x;
  8. }
  9. int main ()
  10. {
  11. return print(wurzel(2.0));
  12. }