Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

14 řádky
275B

  1. #include<iostream>
  2. #include "fcpp.hh" // fuer print
  3. #include "Rational.hh"
  4. #include "Rational.cc"
  5. #include "RationalOutput.cc"
  6. int main () {
  7. Rational p(3,4), q(5,3);
  8. std::cout << p << " " << q << std::endl;
  9. std::cout << (p+q*p)*p*p << std::endl;
  10. return 0;
  11. }