Browse Source

add_marktanteil

main
Celal Kir 2 years ago
parent
commit
46df37e00d
  1. 4
      src/funktion.c
  2. 1
      src/funktion.h
  3. 6
      src/main.c

4
src/funktion.c

@ -10,3 +10,7 @@ float getValue(char c) {
scanf("%f", &value); scanf("%f", &value);
return 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;
}

1
src/funktion.h

@ -2,5 +2,6 @@
#define FUNKTION_H #define FUNKTION_H
float getValue(char c); float getValue(char c);
double marktanteil(double gesamtumsatz,double unternehmensumsatz);
#endif #endif

6
src/main.c

@ -6,4 +6,10 @@
int main() int main()
{ {
double a,b;
printf("Gesamtumsatz: ");
a = getValue('G');
printf ("Unternehmensumsatz: ");
b = getValue('U');
marktanteil(a, b);
} }
Loading…
Cancel
Save