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.
 
 

43 lines
898 B

#include "funktion.h"
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
double a,b;
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);
}