main
Stefan Liewke 2022-10-11 09:36:03 +02:00
parent 24146dd994
commit 2ed4c6a7cc
3 changed files with 6 additions and 2 deletions

View File

@ -36,6 +36,7 @@ public class Konto {
}
public void auszahlen(long auszahlung) {
this.stand = stand - auszahlung;
}

View File

@ -4,15 +4,17 @@ import java.time.LocalDate;
public class Vorgang {
public static int kontoauszugNummer = 0;
public String datum;
public String auftraggeber;
public long kontoBewegung;
public long stand;
public Vorgang(String auftraggeber, long kontobewegung) {
this.auftraggeber = auftraggeber;
this.kontoBewegung = kontobewegung;
this.datum = LocalDate.now().toString();
kontoauszugNummer++;
}
}

View File

@ -127,6 +127,7 @@ public class UI {
return;
}
System.out.println("Bitte Kontonummer eingeben: ");
Integer nummer = Integer.valueOf(sc.nextLine());
System.out.println("Kontoauszug von: " + bs.getKonto(nummer).getInhaber() + " " + LocalDate.now());
System.out.println(bs.getKontoauszug(nummer));