Alle Programmierübungen in der Kursstufe Abi 2021
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.

12 lines
164B

  1. package ab5_einfuehrung;
  2. public class Node {
  3. public Schüler s;
  4. public Node next;
  5. public Node(Schüler s, Node next) {
  6. this.s = s;
  7. this.next = next;
  8. }
  9. }