Alle Programmierübungen in der Kursstufe Abi 2021
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12 行
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. }