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