Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
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);}