NachgereichterCode/FahrzeugInfo.Java hinzugefügt

main
Arthur Kovis 2024-10-08 22:20:59 +02:00
parent a9c6685e81
commit 7e8ef176f4
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import java.util.Date;
public class FahrzeugInfo {
// benötigte Variablen
Date d1;
boolean hatBezahlt;
int schulden;
// Konstruktor mit übergebenen Werten
public FahrzeugInfo(Date d1, boolean hatBezahlt, int schulden) {
this.d1 = d1;
this.hatBezahlt = hatBezahlt;
this.schulden = schulden;
}
}