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.
|
- package ab5_einfuehrung;
-
- public class Node {
- public Schüler s;
- public Node next;
-
- public Node(Schüler s, Node next) {
- this.s = s;
- this.next = next;
- }
- }
|