Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

14 wiersze
216B

  1. #include "fcpp.hh" // fuer print
  2. #include "Rational.hh"
  3. #include "Rational.cc"
  4. int main () {
  5. Rational p(3,4), q(5,3), r;
  6. p.print(); q.print();
  7. r = (p+q*p)*p*p;
  8. r.print();
  9. return 0;
  10. }