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.

12 line
291B

  1. #include "fcpp.hh"
  2. int fakIter (int produkt, int zaehler, int ende)
  3. {
  4. return cond( zaehler>ende,produkt,
  5. print("Fak:",zaehler,produkt*zaehler,
  6. fakIter(produkt*zaehler,zaehler+1,ende)));
  7. }
  8. int fakultaet (int n) {return fakIter(1,1,n);}
  9. int main () { return dump(fakultaet(10));}