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;
}
public boolean geldAuszahlen(double betrag) {
if (kontostand - betrag >= 0) {
kontostand -= betrag;
return true;
}
return false;
// TODO
// Geld soll nur ausgezahlt werden, wenn das Konto
// auch gedeckt ist
public double geldAuszahlen(double betrag) {
return -1;
}
// 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;
}
}