You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.1 KiB
89 lines
2.1 KiB
#include "funktion.h"
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
int main()
|
|
{
|
|
double a,b,c;
|
|
a = getValue('G');
|
|
b = getValue('U');
|
|
marktanteil(a, b);
|
|
|
|
printf("Angebotsmenge: ");
|
|
a = getValue('a');
|
|
printf("Verkaufsmenge: ");
|
|
b = getValue('v');
|
|
angebotserfolg(a,b);
|
|
|
|
printf("Anfangsbuchwert: ");
|
|
a = getValue('A');
|
|
printf("Restbuchwert: ");
|
|
b = getValue('R');
|
|
Anlagenabnutzungsgrad(a,b);
|
|
|
|
printf("Gesamtkapital: ");
|
|
a = getValue('G');
|
|
printf("Anlagevermoegen: ");
|
|
b = getValue('A');
|
|
Anlagenintensitaet(a,b);
|
|
|
|
printf("Anlagevermoegen: ");
|
|
a = getValue('A');
|
|
printf("Umsatz: ");
|
|
b = getValue('U');
|
|
Anlagenproduktivitaet(a,b);
|
|
|
|
printf("Arbeitszeit: ");
|
|
a = getValue('A');
|
|
printf("Produktivitaet: ");
|
|
b = getValue('P');
|
|
Arbeitsproduktivitaet(a,b);
|
|
|
|
printf("Kapital: ");
|
|
a = getValue('K');
|
|
printf("Zinssatz: ");
|
|
b = getValue('Z');
|
|
printf("Zeitraum: ");
|
|
c = getValue('z');
|
|
Kalkulatorische_Zinsen(a,b,c);
|
|
|
|
printf("Fixkosten: ");
|
|
a = getValue('F');
|
|
printf("Variable Kosten: ");
|
|
b = getValue('V');
|
|
printf("Verkaufspreis: ");
|
|
c = getValue('v');
|
|
Kritische_Menge(a,b,c);
|
|
|
|
printf("Normalzinssatz: ");
|
|
a = getValue('N');
|
|
printf("Zahlungsintervall: ");
|
|
b = getValue('Z');
|
|
Effektivverzinsung(a,b);
|
|
|
|
printf("Investition: ");
|
|
a = getValue('I');
|
|
printf("Jaehrlicher Cashflow: ");
|
|
b = getValue('J');
|
|
Cashflow_zu_Gesamtkapital(a,b);
|
|
|
|
printf("Investition: ");
|
|
a = getValue('I');
|
|
printf("Jaehrlicher Cashflow: ");
|
|
b = getValue('J');
|
|
Dynamische_Amortisationszeit(a,b);
|
|
|
|
printf("Geben Sie die durchschnittliche Verzinsung der Vermoegenswerte ein: ");
|
|
a = getValue('V');
|
|
printf("Geben Sie die durchschnittlichen Kosten der Kapitalbeschaffung ein: ");
|
|
b = getValue('K');
|
|
Finanzierungsregeln(a,b);
|
|
|
|
printf("Geben Sie den Umsatz ein: ");
|
|
a = getValue('U');
|
|
printf("Geben Sie das Eigenkapital ein: ");
|
|
b = getValue('E');
|
|
eigenkapital_Rentabilitaeten(a,b);
|
|
}
|