Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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