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 ab51_zahlenreihe;
-
- public class Node {
- public int zahl;
- public Node next;
-
- public Node(int z, Node next) {
- this.zahl = z;
- this.next = next;
- }
- }
|