Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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