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.
133 lines
2.5 KiB
133 lines
2.5 KiB
#include "funktion.h"
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
int main()
|
|
{
|
|
double a,b,c,d,h,x1,s1,x2,x3,z1,z2,z3;
|
|
a = getValue('a');
|
|
b = getValue('b');
|
|
h = getValue('h');
|
|
trapezFlaeche(a,b,h);
|
|
|
|
a = getValue('G');
|
|
b = getValue('U');
|
|
marktanteil(a, b);
|
|
|
|
a = getValue('a');
|
|
b = getValue('v');
|
|
angebotserfolg(a,b);
|
|
|
|
a = getValue('A');
|
|
b = getValue('R');
|
|
Anlagenabnutzungsgrad(a,b);
|
|
|
|
a = getValue('G');
|
|
b = getValue('A');
|
|
Anlagenintensitaet(a,b);
|
|
|
|
a = getValue('A');
|
|
b = getValue('U');
|
|
Anlagenproduktivitaet(a,b);
|
|
|
|
a = getValue('A');
|
|
b = getValue('P');
|
|
Arbeitsproduktivitaet(a,b);
|
|
|
|
a = getValue('K');
|
|
b = getValue('Z');
|
|
c = getValue('z');
|
|
Kalkulatorische_Zinsen(a,b,c);
|
|
|
|
a = getValue('F');
|
|
b = getValue('V');
|
|
c = getValue('v');
|
|
Kritische_Menge(a,b,c);
|
|
|
|
a = getValue('N');
|
|
b = getValue('Z');
|
|
Effektivverzinsung(a,b);
|
|
|
|
a = getValue('I');
|
|
b = getValue('J');
|
|
Cashflow_zu_Gesamtkapital(a,b);
|
|
|
|
a = getValue('I');
|
|
b = getValue('J');
|
|
Dynamische_Amortisationszeit(a,b);
|
|
|
|
a = getValue('V');
|
|
b = getValue('K');
|
|
Finanzierungsregeln(a,b);
|
|
|
|
a = getValue('U');
|
|
b = getValue('E');
|
|
eigenkapital_Rentabilitaeten(a,b);
|
|
|
|
a = getValue('U');
|
|
c = getValue('G');
|
|
gesamtkapital_Rentabilitaeten(a,b);
|
|
|
|
a= getValue('L');
|
|
b = getValue('A');
|
|
Zeitlohn(a,b);
|
|
|
|
a= getValue('S');
|
|
b= getValue('A');
|
|
Akkortrichtsatz(a,b);
|
|
|
|
a= getValue('S');
|
|
b= getValue('A');
|
|
c= getValue('Z');
|
|
d= getValue('M');
|
|
Stueckzeitakkort(a,b,c,d);
|
|
|
|
a= getValue('M');
|
|
b= getValue('E');
|
|
erloesfunktion(a,b);
|
|
|
|
|
|
a= getValue('E');
|
|
b= getValue('M');
|
|
c= getValue('K');
|
|
grenzGewinn(a,b,c);
|
|
|
|
a= getValue('E');
|
|
b= getValue('M');
|
|
c= getValue('K');
|
|
d= getValue('F');
|
|
GewinnMaximum(a,b,c,d);
|
|
|
|
x1 = getValue('X');
|
|
s1 = getValue('s');
|
|
Vshift(x1,s1);
|
|
|
|
x1 = getValue('X');
|
|
x2 = getValue('X');
|
|
x3 = getValue('X');
|
|
Vlength(x1, x2, x3);
|
|
|
|
x1 = getValue('x');
|
|
z1 = getValue('z');
|
|
Vadd(x1,z1);
|
|
|
|
x2 = getValue('X');
|
|
z2 = getValue('z');
|
|
Vaddx2(x2,z2);
|
|
|
|
x3 = getValue('X');
|
|
z3 = getValue('z');
|
|
Vaddx3(x3,z3);
|
|
|
|
x1 = getValue('x');
|
|
z1 = getValue('z');
|
|
Vsubstract(x1, z1);
|
|
|
|
printf("y eingeben ");
|
|
x2 = getValue('X');
|
|
printf("b eingeben");
|
|
z2 = getValue('z');
|
|
Vsubstract2(x2, z2);
|
|
}
|