diff --git a/src/funktion.c b/src/funktion.c index 8c929a5..f7d67b5 100644 --- a/src/funktion.c +++ b/src/funktion.c @@ -9,4 +9,8 @@ float getValue(char c) { printf("%c eingeben: ",c); scanf("%f", &value); return value; +} +double marktanteil(double gesamtumsatz,double unternehmensumsatz) { + printf("Der Marktanteil betrÃĪgt: %f\n", unternehmensumsatz / gesamtumsatz * 100.0); + return unternehmensumsatz / gesamtumsatz * 100.0; } \ No newline at end of file diff --git a/src/funktion.h b/src/funktion.h index 061958a..572411f 100644 --- a/src/funktion.h +++ b/src/funktion.h @@ -2,5 +2,6 @@ #define FUNKTION_H float getValue(char c); +double marktanteil(double gesamtumsatz,double unternehmensumsatz); #endif diff --git a/src/main.c b/src/main.c index 80a2127..55297ed 100644 --- a/src/main.c +++ b/src/main.c @@ -6,4 +6,10 @@ int main() { + double a,b; + printf("Gesamtumsatz: "); + a = getValue('G'); + printf ("Unternehmensumsatz: "); + b = getValue('U'); + marktanteil(a, b); } \ No newline at end of file