Einfügen des keinNegativ bei EIngabe beim einzahlen
parent
af21ab01dc
commit
03b56a6575
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>Bank-System</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -60,11 +60,16 @@ public class UI {
|
|||
String input = sc.nextLine();
|
||||
String[] konten = bs.getKontenliste();
|
||||
for (String k : konten) {
|
||||
|
||||
if (k.contains(input)) {
|
||||
System.out.println("auf dieses Konto wird geladen");
|
||||
System.out.println(k.toString());
|
||||
System.out.println("Wieviel möchten sie aufladen?");
|
||||
long input2 = Long.parseLong(sc.nextLine());
|
||||
if(input2<0) {
|
||||
System.out.println("Betrag muss plus sein");
|
||||
kÜberNamen();
|
||||
}
|
||||
bs.kontoAufladen(k,input2);
|
||||
}
|
||||
}
|
||||
|
@ -80,6 +85,10 @@ public class UI {
|
|||
System.out.println(k.toString());
|
||||
System.out.println("Wieviel möchten sie aufladen");
|
||||
long input2 = Long.parseLong(sc.nextLine());
|
||||
if(input2<0) {
|
||||
System.out.println("Betrag muss plus sein");
|
||||
kÜberNummer();
|
||||
}
|
||||
bs.kontoAufladen(k, input2);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue