-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsparkonto.cpp
42 lines (34 loc) · 1.31 KB
/
sparkonto.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// *******************************************************************
// sparkonto.cpp
// *******************************************************************
#include "sparkonto.h"
#include <cmath>
// *******************************************************************
Sparkonto::Sparkonto(string inhaber, string nr, string pin, int betrag,
double zins, Datum d) : Konto(inhaber, nr, pin, betrag, d) {
this->zinssatz = zins;
this->zinsen = 0;
}
// *******************************************************************
int Sparkonto::berechneZins(Datum d) {
int diffTage = d.diffDays(letzteAenderung);
return stand * zinssatz * diffTage / 360;
}
// *******************************************************************
void Sparkonto::hebeAb(int betrag, Datum d, string info) {
if (stand - betrag < 0)
throw "invalid operation";
zinsen += berechneZins(d);
Konto::hebeAb(betrag, d, info);
}
// *******************************************************************
void Sparkonto::zahleEin(int betrag, Datum d, string info) {
zinsen += berechneZins(d);
Konto::zahleEin(betrag, d, info);
}
// *******************************************************************
void Sparkonto::zinsgutschrift(Datum d) {
zinsen += berechneZins(d);
stand += zinsen;
zinsen = 0;
}