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

13 řádky
282B

  1. #include "fcpp.hh"
  2. enum Zustand { neu, gebraucht, alt, kaputt };
  3. void druckeZustand (Zustand x) {
  4. if (x==neu) print("neu");
  5. if (x==gebraucht) print("gebraucht");
  6. if (x==alt) print("alt");
  7. if (x==kaputt) print("kaputt");
  8. }
  9. int main () {druckeZustand(alt);}