Compare commits

..

No commits in common. "main" and "main" have entirely different histories.
main ... main

2 changed files with 5 additions and 25 deletions

View File

@ -36,13 +36,11 @@ public class Bankkonto implements Serializable {
return kontostand; return kontostand;
} }
public boolean geldAuszahlen(double betrag) { // TODO
if (kontostand - betrag >= 0) { // Geld soll nur ausgezahlt werden, wenn das Konto
kontostand -= betrag; // auch gedeckt ist
return true; public double geldAuszahlen(double betrag) {
} return -1;
return false;
} }
// TODO // TODO

View File

@ -1,18 +0,0 @@
package bank;
public class Girokonto extends Bankkonto {
public Girokonto(String name) {
super(name);
}
public boolean überweisen(Bankkonto zielkonto, double betrag) {
if (this.geldAuszahlen(betrag)) {
zielkonto.geldEinzahlen(betrag);
return true;
}
return false;
}
}