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