From e3fdf37afc3d870e19873817c27da747b72de731 Mon Sep 17 00:00:00 2001 From: Celal Kir Date: Sat, 4 Feb 2023 04:41:28 +0100 Subject: [PATCH] refactoring:Zeitlohn --- src/funktion.c | 3 +-- src/main.c | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/funktion.c b/src/funktion.c index c65f6de..4e5da59 100644 --- a/src/funktion.c +++ b/src/funktion.c @@ -83,8 +83,7 @@ double gesamtkapital_Rentabilitaeten(double umsatz,double gesamtkapital) { double Zeitlohn(double lohnsatz,double arbeitszeit) { double zeitlohn = lohnsatz * arbeitszeit; - printf("Der Zeitlohn betraegt: %lf\n", zeitlohn); - return zeitlohn = lohnsatz * arbeitszeit; + return zeitlohn; } double Akkortrichtsatz(double stueckkosten,double akkordzuschlag) { diff --git a/src/main.c b/src/main.c index 3a1edc2..a376d7a 100644 --- a/src/main.c +++ b/src/main.c @@ -65,9 +65,7 @@ int main() c = getValue('G'); gesamtkapital_Rentabilitaeten(a,b); - printf("Geben Sie den Lohnsatz ein: "); a= getValue('L'); - printf("Geben Sie die Arbeitszeit ein: "); b = getValue('A'); Zeitlohn(a,b);