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.

11 lines
135B

  1. int fib (int n)
  2. {
  3. int a=0;
  4. int b=1;
  5. for (int i=0; i<n; i=i+1)
  6. {
  7. int t=a+b; a = b; b = t;
  8. }
  9. return a;
  10. }