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.

21 line
267B

  1. #include "fcpp.hh"
  2. #include "intlist.cc"
  3. #include "intset.cc"
  4. int main ()
  5. {
  6. IntSet* s = empty_set();
  7. print_set(s);
  8. for (int i=1; i<12; i=i+1)
  9. insert_in_set(s,i);
  10. print_set(s);
  11. for (int i=2; i<30; i=i+2)
  12. remove_from_set(s,i);
  13. print_set(s);
  14. }