|
|
@ -67,4 +67,11 @@ double Cashflow_zu_Gesamtkapital(double netto_kassenfluss, double gesamtkapital) |
|
|
|
ergebnis = netto_kassenfluss / gesamtkapital; |
|
|
|
printf("Cashflow zu Gesamtkapital: %.2f\n", ergebnis); |
|
|
|
return netto_kassenfluss / gesamtkapital; |
|
|
|
} |
|
|
|
|
|
|
|
double Dynamische_Amortisationszeit(double investition, double jaehrlicher_Cashflow){ |
|
|
|
float ergebnis; |
|
|
|
ergebnis = investition / jaehrlicher_Cashflow; |
|
|
|
printf("Dynamische Amortisationszeit: %.2f\n", ergebnis); |
|
|
|
return investition / jaehrlicher_Cashflow; |
|
|
|
} |