grundgerüst

main
student 2026-04-01 12:30:45 +02:00
parent 79669773ca
commit 3a48bd16fb
1 changed files with 22 additions and 0 deletions

View File

@ -5,5 +5,27 @@ public class Aufgabe1 {
// TODO Auto-generated method stub
}
class Knoten {
int zahl;
}
class LinkedList {
public static void einfügen(int zahl) {
}
public static int auslesen(int index) {
int zahl;
return zahl;
}
public static void löschen(int index) {
}
System.out.println(IndexOutOfBoundsException(""));
}
}