package ab51_zahlenreihe; public class Node { public int zahl; public Node next; public Node(int z, Node next) { this.zahl = z; this.next = next; } }