Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

14 satır
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. }