Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
AymunAlShaboti | 8341490d3f | |
AymunAlShaboti | e1e3bc5246 |
|
@ -1 +0,0 @@
|
||||||
/.DS_Store
|
|
|
@ -179,5 +179,5 @@ replay_pid*
|
||||||
# Built Visual Studio Code Extensions
|
# Built Visual Studio Code Extensions
|
||||||
*.vsix
|
*.vsix
|
||||||
|
|
||||||
*.ser
|
/bank.ser
|
||||||
/.DS_Store
|
/zähler.ser
|
||||||
|
|
Binary file not shown.
|
@ -3,14 +3,13 @@ package de.hs_mannheim.informatik.bank.domain;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
public class Girokonto extends Konto implements Serializable {
|
public class Girokonto extends Konto implements Serializable {
|
||||||
private long dispo = 100000;
|
|
||||||
|
|
||||||
public Girokonto(String inhaber, int kontozähler) {
|
public Girokonto(String inhaber, int kontozähler) {
|
||||||
super(inhaber, kontozähler);
|
super(inhaber, kontozähler);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean überweise(Girokonto ziel, long betrag, String zweck) {
|
public boolean überweise(Girokonto ziel, long betrag, String zweck) {
|
||||||
if (super.getKontostand() - betrag >= dispo * (-1)) {
|
if (super.getKontostand() - betrag >= 0) {
|
||||||
this.auszahlen(betrag, zweck, "Überweisungsausgang", super.getInhaber());
|
this.auszahlen(betrag, zweck, "Überweisungsausgang", super.getInhaber());
|
||||||
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
||||||
|
|
||||||
|
@ -20,19 +19,6 @@ public class Girokonto extends Konto implements Serializable {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean auszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
|
||||||
if (stand - betrag >= dispo * (-1)) {
|
|
||||||
stand -= betrag;
|
|
||||||
|
|
||||||
kontobewegungen.add(new Kontobewegung(betrag * -1, zweck, art, auftraggeber));
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "Giro-" + super.toString();
|
return "Giro-" + super.toString();
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
package de.hs_mannheim.informatik.bank.domain;
|
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
|
|
||||||
class GirokontoTest {
|
|
||||||
|
|
||||||
@Test
|
|
||||||
void testÜberziehung() {
|
|
||||||
Konto k = new Girokonto("Müller", 0);
|
|
||||||
k.einzahlen(10000, "Test", "Einzahlung", "JUnit");
|
|
||||||
|
|
||||||
assertTrue(k.auszahlen(20000, "Test", "Einzahlung", "JUnit"));
|
|
||||||
assertEquals(-10000, k.getKontostand());
|
|
||||||
|
|
||||||
assertTrue(k.auszahlen(40000, "Test", "Einzahlung", "JUnit"));
|
|
||||||
assertTrue(k.auszahlen(50000, "Test", "Einzahlung", "JUnit"));
|
|
||||||
assertEquals(-100000, k.getKontostand());
|
|
||||||
|
|
||||||
assertFalse(k.auszahlen(40000, "Test", "Einzahlung", "JUnit"));
|
|
||||||
assertFalse(k.auszahlen(1, "Test", "Einzahlung", "JUnit"));
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -5,10 +5,10 @@ import java.util.ArrayList;
|
||||||
|
|
||||||
public class Konto implements Serializable {
|
public class Konto implements Serializable {
|
||||||
private int nummer;
|
private int nummer;
|
||||||
protected long stand = 0;
|
private long stand = 0;
|
||||||
private String inhaber;
|
private String inhaber;
|
||||||
|
|
||||||
protected ArrayList<Kontobewegung> kontobewegungen;
|
private ArrayList<Kontobewegung> kontobewegungen;
|
||||||
|
|
||||||
public Konto(String inhaber, int kontozähler) {
|
public Konto(String inhaber, int kontozähler) {
|
||||||
nummer = 1000 + kontozähler;
|
nummer = 1000 + kontozähler;
|
||||||
|
@ -62,15 +62,15 @@ public class Konto implements Serializable {
|
||||||
|
|
||||||
return auflistung;
|
return auflistung;
|
||||||
}
|
}
|
||||||
|
|
||||||
public long berechneSaldo(int anzahl) {
|
// public long berechneSaldo(int anzahl) {
|
||||||
long saldo = 0;
|
// long saldo = 0;
|
||||||
|
//
|
||||||
for (int i = 0; i < anzahl; i++) {
|
// for (int i = 0; i < anzahl; i++) {
|
||||||
saldo += kontobewegungen.get(i).getBetrag() ;
|
// saldo += kontobewegungen.get(i).getBetrag() ;
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
return saldo;
|
// return saldo;
|
||||||
}
|
// }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,46 +15,31 @@ class KontoTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testKontoEinUndAuszahlungUndSaldo() {
|
void testKontoEinUndAuszahlung() {
|
||||||
Konto k = new Konto("Müller", 0);
|
Konto k = new Konto("Müller", 0);
|
||||||
Konto k2 = new Konto("Mayer", 1);
|
Konto k2 = new Konto("Mayer", 1);
|
||||||
testKontoEinUndAuszahlungUndSaldo(k, k2);
|
|
||||||
|
|
||||||
k = new Girokonto("Müller", 0);
|
|
||||||
k2 = new Girokonto("Mayer", 1);
|
|
||||||
testKontoEinUndAuszahlungUndSaldo(k, k2);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void testKontoEinUndAuszahlungUndSaldo(Konto k, Konto k2) {
|
|
||||||
assertEquals("Mayer", k2.getInhaber());
|
assertEquals("Mayer", k2.getInhaber());
|
||||||
|
//beide Konten sind nicht gleich
|
||||||
assertNotEquals(k.getKontonummer(), k2.getKontonummer());
|
assertNotEquals(k.getKontonummer(), k2.getKontonummer());
|
||||||
|
|
||||||
k2.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
k2.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
//ich erwarte 100€ in seinem Konto
|
||||||
assertEquals(100, k2.getKontostand());
|
assertEquals(100, k2.getKontostand());
|
||||||
|
|
||||||
assertTrue(k2.auszahlen(50, "Test", "Auszahlung", "JUnit"));
|
assertTrue(k2.auszahlen(50, "Test", "Auszahlung", "JUnit"));
|
||||||
|
//verbliebene Summe
|
||||||
assertEquals(50, k2.getKontostand());
|
assertEquals(50, k2.getKontostand());
|
||||||
|
|
||||||
assertTrue(k2.auszahlen(50, "Test", "Auszahlung", "JUnit"));
|
assertFalse(k2.auszahlen(500, "Test", "Auszahlung", "JUnit"));
|
||||||
assertEquals(0, k2.getKontostand());
|
//die Summe ist nicht auszahlbar!
|
||||||
|
assertEquals(50, k2.getKontostand());
|
||||||
|
|
||||||
k2.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
|
||||||
k2.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
|
||||||
k2.einzahlen(1, "Test", "Einzahlung", "JUnit");
|
|
||||||
|
|
||||||
assertEquals(100, k2.berechneSaldo(1));
|
|
||||||
assertEquals(100, k2.berechneSaldo(4));
|
|
||||||
assertEquals(k2.getKontostand(), k2.berechneSaldo(6));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testKeineÜberziehungFürSparkonten() {
|
void testEinzahlungEingabe() {
|
||||||
Konto k = new Konto("Müller", 0);
|
|
||||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
|
||||||
assertFalse(k.auszahlen(500, "Test", "Auszahlung", "JUnit"));
|
|
||||||
|
|
||||||
k.auszahlen(50, "Test", "Auszahlung", "JUnit");
|
|
||||||
assertFalse(k.auszahlen(100, "Test", "Auszahlung", "JUnit"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,9 +19,10 @@ public class Kontobewegung implements Serializable {
|
||||||
this.datum = new Date();
|
this.datum = new Date();
|
||||||
}
|
}
|
||||||
|
|
||||||
public long getBetrag() {
|
// public long getBetrag() {
|
||||||
return betrag;
|
// return betrag;
|
||||||
}
|
// }
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
package de.hs_mannheim.informatik.bank.domain;
|
||||||
|
|
||||||
|
public class Kunde extends Konto{
|
||||||
|
|
||||||
|
private String vorName;
|
||||||
|
private String nachName;
|
||||||
|
private int alter;
|
||||||
|
private String wohnOrt;
|
||||||
|
private String Kundschaft;
|
||||||
|
|
||||||
|
public Kunde(String inhaber, int kontozähler) {
|
||||||
|
super(inhaber, kontozähler);
|
||||||
|
// TODO Auto-generated constructor stub
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -43,6 +43,10 @@ public class Banksystem {
|
||||||
|
|
||||||
public long geldEinzahlen(int kontonummer, long betrag) throws Exception {
|
public long geldEinzahlen(int kontonummer, long betrag) throws Exception {
|
||||||
Konto konto = bank.findeKonto(kontonummer);
|
Konto konto = bank.findeKonto(kontonummer);
|
||||||
|
|
||||||
|
if(betrag < konto.getKontostand()){
|
||||||
|
System.out.println("sorry du bist arm!");
|
||||||
|
}
|
||||||
konto.einzahlen(betrag, "Einzahlung am Schalter", "Einzahlung", konto.getInhaber());
|
konto.einzahlen(betrag, "Einzahlung am Schalter", "Einzahlung", konto.getInhaber());
|
||||||
|
|
||||||
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
||||||
|
@ -53,11 +57,9 @@ public class Banksystem {
|
||||||
public boolean geldAuszahlen(int kontonummer, long betrag) throws Exception {
|
public boolean geldAuszahlen(int kontonummer, long betrag) throws Exception {
|
||||||
Konto konto = bank.findeKonto(kontonummer);
|
Konto konto = bank.findeKonto(kontonummer);
|
||||||
|
|
||||||
boolean erg = konto.auszahlen(betrag, "Auszahlung am Schalter", "Auszahlung", konto.getInhaber());
|
|
||||||
|
|
||||||
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
||||||
|
|
||||||
return erg;
|
return konto.auszahlen(betrag, "Auszahlung am Schalter", "Auszahlung", konto.getInhaber());
|
||||||
}
|
}
|
||||||
|
|
||||||
public String[] erstelleKontoauszug(int kontonummer) {
|
public String[] erstelleKontoauszug(int kontonummer) {
|
||||||
|
@ -66,15 +68,12 @@ public class Banksystem {
|
||||||
return konto.getKontobewegungen();
|
return konto.getKontobewegungen();
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean überweisungBeauftragen(int startkonto, int zielkonto, long betrag, String verwendungszweck) throws Exception {
|
public boolean überweisungBeauftragen(int startkonto, int zielkonto, long betrag, String verwendungszweck) {
|
||||||
Konto start = bank.findeKonto(startkonto);
|
Konto start = bank.findeKonto(startkonto);
|
||||||
Konto ziel = bank.findeKonto(zielkonto);
|
Konto ziel = bank.findeKonto(zielkonto);
|
||||||
|
|
||||||
if (start instanceof Girokonto && ziel instanceof Girokonto) {
|
if (start instanceof Girokonto && ziel instanceof Girokonto) {
|
||||||
boolean erfolg = ((Girokonto)start).überweise((Girokonto)ziel, betrag, verwendungszweck);
|
return ((Girokonto)start).überweise((Girokonto)ziel, betrag, verwendungszweck);
|
||||||
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
|
||||||
|
|
||||||
return erfolg;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
@ -85,11 +84,11 @@ public class Banksystem {
|
||||||
|
|
||||||
return konto.getKontostand();
|
return konto.getKontostand();
|
||||||
}
|
}
|
||||||
|
// public long saldoBestimmen(int kontonummer, int anzahl) {
|
||||||
public long saldoBestimmen(int kontonummer, int anzahl) {
|
// Konto konto = bank.findeKonto(kontonummer);
|
||||||
Konto konto = bank.findeKonto(kontonummer);
|
//
|
||||||
|
// return konto.berechneSaldo(anzahl);
|
||||||
return konto.berechneSaldo(anzahl);
|
// }
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
//commit this
|
||||||
|
|
|
@ -2,69 +2,18 @@ package de.hs_mannheim.informatik.bank.facade;
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.AfterAll;
|
|
||||||
import org.junit.jupiter.api.BeforeAll;
|
|
||||||
import org.junit.jupiter.api.MethodOrderer.OrderAnnotation;
|
|
||||||
import org.junit.jupiter.api.Order;
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.jupiter.api.TestMethodOrder;
|
|
||||||
|
|
||||||
@TestMethodOrder(OrderAnnotation.class)
|
|
||||||
class SystemTest {
|
class SystemTest {
|
||||||
private static Banksystem bs;
|
|
||||||
|
|
||||||
@BeforeAll
|
|
||||||
static void initBanksystem() throws Exception {
|
|
||||||
bs = new Banksystem("Testsystem");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Order(1)
|
void smokeTest() throws Exception {
|
||||||
void smokeTest() {
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
|
|
||||||
assertNotNull(bs);
|
assertNotNull(bs);
|
||||||
assertEquals(0, bs.getKontenliste().length);
|
assertEquals(0, bs.getKontenliste().length);
|
||||||
assertEquals("Testsystem", bs.getBankname());
|
assertEquals("Testsystem", bs.getBankname());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
@Order(2)
|
|
||||||
void einzahlenTest() throws Exception {
|
|
||||||
int knr = bs.kontoAnlegen("Test1", 1);
|
|
||||||
|
|
||||||
assertEquals(1000, bs.geldEinzahlen(knr, 1000));
|
|
||||||
|
|
||||||
bs.geldEinzahlen(knr, 1);
|
|
||||||
assertEquals(1001, bs.getKontostand(knr));
|
|
||||||
|
|
||||||
assertEquals(1001, bs.geldEinzahlen(knr, 0));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Order(3)
|
|
||||||
void persistenzTest() throws Exception {
|
|
||||||
int knr = bs.kontoAnlegen("Test2", 2);
|
|
||||||
int knr2 = bs.kontoAnlegen("Test3", 2);
|
|
||||||
|
|
||||||
bs.geldEinzahlen(knr, 1000);
|
|
||||||
bs.geldAuszahlen(knr, 500);
|
|
||||||
assertTrue(bs.überweisungBeauftragen(knr, knr2, 100, "Überweisungstest."));
|
|
||||||
|
|
||||||
assertEquals(400, bs.getKontostand(knr));
|
|
||||||
|
|
||||||
bs = null;
|
|
||||||
|
|
||||||
Banksystem bs2 = new Banksystem("Testsystem");
|
|
||||||
assertEquals(400, bs2.getKontostand(knr));
|
|
||||||
}
|
|
||||||
|
|
||||||
@AfterAll
|
|
||||||
static void cleanup() {
|
|
||||||
File file = new File("/Users/oliver/git/Bank-System/Bank-Beispiel/Testsystem-bank-data.ser");
|
|
||||||
file.delete();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,7 +46,7 @@ public class UI {
|
||||||
case 4: geldAuszahlen(); break;
|
case 4: geldAuszahlen(); break;
|
||||||
case 5: kontoauszugDrucken(); break;
|
case 5: kontoauszugDrucken(); break;
|
||||||
case 6: überweisungBeauftragen(); break;
|
case 6: überweisungBeauftragen(); break;
|
||||||
case 7: saldoAbfragen(); break;
|
//case 7: saldoAbfragen(); break;
|
||||||
case 9: break mainloop;
|
case 9: break mainloop;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -75,6 +75,7 @@ public class UI {
|
||||||
private void kontoAnlegen() throws Exception {
|
private void kontoAnlegen() throws Exception {
|
||||||
System.out.println("Bitte den Namen des Kontoinhabers angeben: ");
|
System.out.println("Bitte den Namen des Kontoinhabers angeben: ");
|
||||||
String name = sc.nextLine();
|
String name = sc.nextLine();
|
||||||
|
|
||||||
|
|
||||||
System.out.println("Möchten Sie ein Sparkonto (1) oder ein Girokonto (2) anlegen?");
|
System.out.println("Möchten Sie ein Sparkonto (1) oder ein Girokonto (2) anlegen?");
|
||||||
int auswahl = Integer.parseInt(sc.nextLine());
|
int auswahl = Integer.parseInt(sc.nextLine());
|
||||||
|
@ -84,38 +85,68 @@ public class UI {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void geldEinzahlen() throws Exception {
|
private void geldEinzahlen() throws Exception {
|
||||||
System.out.println("Geld einzahlen");
|
|
||||||
System.out.print("Bitte die gewünschte Kontonummer eingeben: ");
|
|
||||||
int kontonummer = Integer.parseInt(sc.nextLine());
|
|
||||||
|
|
||||||
// optional prüfen, ob Konto existiert
|
// optional prüfen, ob ein Konto existiert
|
||||||
|
|
||||||
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
try {
|
||||||
double betrag = Double.parseDouble(sc.nextLine());
|
System.out.println("Geld einzahlen");
|
||||||
|
System.out.print("Bitte die gewünschte Kontonummer eingeben: ");
|
||||||
|
int kontonummer = Integer.parseInt(sc.nextLine());
|
||||||
|
//Konto ist vorhanden!
|
||||||
|
if (kontonummer == bs.getKontostand(kontonummer)) {
|
||||||
|
|
||||||
|
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
||||||
|
double betrag = Double.parseDouble(sc.nextLine());
|
||||||
|
|
||||||
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long)betrag * 100);
|
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long)betrag * 100);
|
||||||
|
|
||||||
System.out.printf("Einzahlung erfolgreich, neuer Kontostand = %.2f Euro", (neuerKontostand / 100.0));
|
System.out.printf("Einzahlung erfolgreich, neuer Kontostand = %.2f Euro", (neuerKontostand / 100.0));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}catch (NullPointerException e) {
|
||||||
|
System.out.print("Dieses Konto existiert nicht!! ");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void geldAuszahlen() throws Exception {
|
private void geldAuszahlen() throws Exception {
|
||||||
System.out.println("Geld auszahlen");
|
|
||||||
System.out.print("Bitte die gewünschte Kontonummer eingeben: ");
|
//Prüfe ob Konto vorhanden ist!
|
||||||
int kontonummer = Integer.parseInt(sc.nextLine());
|
try {
|
||||||
|
System.out.println("Geld auszahlen");
|
||||||
|
System.out.print("Bitte die gewünschte Kontonummer eingeben: ");
|
||||||
|
int kontonummer = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
|
//Konto ist vorhanden!
|
||||||
|
if (kontonummer == bs.getKontostand(kontonummer)) {
|
||||||
|
|
||||||
|
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
||||||
|
double betrag = Double.parseDouble(sc.nextLine());
|
||||||
|
|
||||||
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
boolean erfolgreich = bs.geldAuszahlen(kontonummer, (long)betrag * 100);
|
||||||
double betrag = Double.parseDouble(sc.nextLine());
|
|
||||||
|
|
||||||
boolean erfolgreich = bs.geldAuszahlen(kontonummer, (long)betrag * 100);
|
System.out.printf("Auszahlung" + ((!erfolgreich)? " nicht" : "" )+ " erfolgreich. ");
|
||||||
|
System.out.printf("Neuer Kontostand = %.2f Euro.", (bs.getKontostand(kontonummer) / 100.0));
|
||||||
|
}
|
||||||
|
|
||||||
System.out.printf("Auszahlung" + ((!erfolgreich)? " nicht" : "" )+ " erfolgreich. ");
|
|
||||||
System.out.printf("Neuer Kontostand = %.2f Euro.", (bs.getKontostand(kontonummer) / 100.0));
|
|
||||||
|
} catch (NullPointerException e) {
|
||||||
|
System.out.print("Dieses Konto existiert nicht!! ");
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void kontoauszugDrucken() {
|
private void kontoauszugDrucken() {
|
||||||
System.out.print("Bitte die gewünschte Kontonummer für den Auszug eingeben: ");
|
System.out.print("Bitte die gewünschte Kontonummer für den Auszug eingeben: ");
|
||||||
int kontonummer = Integer.parseInt(sc.nextLine());
|
int kontonummer = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
|
System.out.println();
|
||||||
|
|
||||||
// in echt auf einem Drucker
|
// in echt auf einem Drucker
|
||||||
System.out.println("Auszug für Konto " + kontonummer);
|
System.out.println("Auszug für Konto " + kontonummer);
|
||||||
String[] kontobewegungen = bs.erstelleKontoauszug(kontonummer);
|
String[] kontobewegungen = bs.erstelleKontoauszug(kontonummer);
|
||||||
|
@ -128,7 +159,7 @@ public class UI {
|
||||||
System.out.println("Noch keine Kontobewegungen.");
|
System.out.println("Noch keine Kontobewegungen.");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void überweisungBeauftragen() throws Exception {
|
private void überweisungBeauftragen() {
|
||||||
System.out.print("Bitte die Kontonummer des Ausgangskontos der Überweisung eingeben: ");
|
System.out.print("Bitte die Kontonummer des Ausgangskontos der Überweisung eingeben: ");
|
||||||
int startkonto = Integer.parseInt(sc.nextLine());
|
int startkonto = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
|
@ -146,15 +177,16 @@ public class UI {
|
||||||
System.out.println("Überweisung" + ( (!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
System.out.println("Überweisung" + ( (!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void saldoAbfragen() {
|
// private void saldoAbfragen() {
|
||||||
System.out.print("Bitte die Kontonummer des gewünschten Kontos eingeben: ");
|
// System.out.print("Bitte die Kontonummer des gewünschten Kontos eingeben: ");
|
||||||
int konto = Integer.parseInt(sc.nextLine());
|
// int konto = Integer.parseInt(sc.nextLine());
|
||||||
|
//
|
||||||
System.out.print("Bitte die Anzahl der Kontobewegungen für den Saldo eingeben: ");
|
// System.out.print("Bitte die Anzahl der Kontobewegungen für den Saldo eingeben: ");
|
||||||
int anzahl = Integer.parseInt(sc.nextLine());
|
// int anzahl = Integer.parseInt(sc.nextLine());
|
||||||
|
//
|
||||||
long saldo = bs.saldoBestimmen(konto, anzahl);
|
// long saldo = bs.saldoBestimmen(konto, anzahl);
|
||||||
System.out.printf("Der Saldo nach %d Kontobewegungen beträgt %.2f Euro.%n", anzahl, (saldo/100d));
|
// System.out.printf("Der Saldo nach %d Kontobewegungen beträgt %.2f Euro.%n", anzahl, (saldo/100d));
|
||||||
}
|
// }
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue