forked from hummel/Bank-System
Bugfix für Eingabe-Parsing
parent
506e832323
commit
e491b95942
|
@ -105,8 +105,10 @@ public class UI {
|
||||||
betrag = Double.parseDouble(sc.nextLine());
|
betrag = Double.parseDouble(sc.nextLine());
|
||||||
} catch (NumberFormatException nfe) {
|
} catch (NumberFormatException nfe) {
|
||||||
System.err.println("Betrag muss eine Kommazahl sein, bitte Eingabe wiederholen!");
|
System.err.println("Betrag muss eine Kommazahl sein, bitte Eingabe wiederholen!");
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ok = true;
|
||||||
} while(!ok);
|
} while(!ok);
|
||||||
|
|
||||||
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long)betrag * 100);
|
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long)betrag * 100);
|
||||||
|
|
Loading…
Reference in New Issue