Alle Programmierübungen in der Kursstufe Abi 2021
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- 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;
- }
- }
|