From 07d3c4c67104eebff2a6ae1317eef94c2f809b6e Mon Sep 17 00:00:00 2001 From: Berat Date: Sun, 6 Oct 2024 19:06:04 +0200 Subject: [PATCH] auto added --- PR2GitDemo/src/defaultt/Auto.java | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/PR2GitDemo/src/defaultt/Auto.java b/PR2GitDemo/src/defaultt/Auto.java index 8d7ae1f..1b6fc86 100644 --- a/PR2GitDemo/src/defaultt/Auto.java +++ b/PR2GitDemo/src/defaultt/Auto.java @@ -1,5 +1,18 @@ package defaultt; -public class Auto { +import java.time.LocalDateTime; -} +public class Auto{ + private String kennzeichen; + private LocalDateTime einfahrtUhrzeit; + private double schulden; + private boolean eAuto; + + + public Auto(String kennzeichen, LocalDateTime einfahrtUhrzeit) { + this.kennzeichen = kennzeichen; + this.einfahrtUhrzeit = einfahrtUhrzeit; + this.schulden = 0; + this.eAuto = kennzeichen.endsWith("E"); + } +} \ No newline at end of file