Alle Programmierübungen in der Kursstufe Abi 2021
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 line
161B

  1. package ab51_zahlenreihe;
  2. public class Node {
  3. public int zahl;
  4. public Node next;
  5. public Node(int z, Node next) {
  6. this.zahl = z;
  7. this.next = next;
  8. }
  9. }