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ů.

11 řádky
172B

  1. #include "fcpp.hh"
  2. int quadrat (int x) {return x*x;}
  3. int absolut (int x) {return cond( x<=0, -x , x);}
  4. int main ()
  5. {
  6. return print( absolut(-4)*(7*quadrat(3)+8) );
  7. }