Bugfix für Eingabe-Parsing

uebungNov8
Oliver Hummel 2022-11-09 14:11:22 +01:00
parent 506e832323
commit e491b95942
1 changed files with 2 additions and 0 deletions

View File

@ -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);