Browse Source

refactoring:Akkortrichtsatz

main
Celal Kir 2 years ago
parent
commit
6de09e7b24
  1. 3
      src/funktion.c

3
src/funktion.c

@ -88,8 +88,7 @@ double Zeitlohn(double lohnsatz,double arbeitszeit) {
double Akkortrichtsatz(double stueckkosten,double akkordzuschlag) { double Akkortrichtsatz(double stueckkosten,double akkordzuschlag) {
double akkordrichtsatz = stueckkosten * (1 + akkordzuschlag); double akkordrichtsatz = stueckkosten * (1 + akkordzuschlag);
printf("Der Akkordrichtsatz betraegt: %lf\n", akkordrichtsatz);
return stueckkosten * (1 + akkordzuschlag);
return akkordrichtsatz;
} }
double Stueckzeitakkort(double stueckkosten,double akkordzuschlag,double arbeitszeit,double menge) { double Stueckzeitakkort(double stueckkosten,double akkordzuschlag,double arbeitszeit,double menge) {

Loading…
Cancel
Save