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