diff --git a/src/funktion.c b/src/funktion.c index 379a5b1..08ad4d3 100644 --- a/src/funktion.c +++ b/src/funktion.c @@ -111,3 +111,9 @@ double Stueckzeitakkort(double stueckkosten,double akkordzuschlag,double arbeits printf("Der Stueckzeitakkord betraegt: %lf\n", stueckzeitakkord); return stueckkosten * (1 + akkordzuschlag) * arbeitszeit * menge; } + +double erloesfunktion(double p,double q){ + double erloesfunktionn = p * q; + printf("Erloesfunktion: %.2f\n", erloesfunktionn); + return erloesfunktionn; +} \ No newline at end of file diff --git a/src/funktion.h b/src/funktion.h index 66a94bb..a6c7145 100644 --- a/src/funktion.h +++ b/src/funktion.h @@ -19,4 +19,5 @@ double gesamtkapital_Rentabilitaeten(double umsatz,double gesamtkapital); double Zeitlohn(double lohnsatz,double arbeitszeit); double Akkortrichtsatz(double stueckkosten,double akkordzuschlag); double Stueckzeitakkort(double stueckkosten,double akkordzuschlag,double arbeitszeit,double menge); +double erloesfunktion(double p,double q); #endif diff --git a/src/main.c b/src/main.c index dd46b62..bbfb89a 100644 --- a/src/main.c +++ b/src/main.c @@ -114,4 +114,10 @@ int main() printf("Geben Sie die Menge ein: "); d= getValue('M'); Stueckzeitakkort(a,b,c,d); + + printf("Bitte geben Sie die produzierte Menge ein: "); + a= getValue('M'); + printf("Bitte geben Sie den Preis pro Einheit ein: "); + b= getValue('E'); + erloesfunktion(a,b); }