Browse Source

add Normale Division

main
fdai7615 2 years ago
parent
commit
9a7e16f5b8
  1. 10
      src/funktion.c
  2. 2
      src/funktion.h
  3. 8
      src/main.c

10
src/funktion.c

@ -348,3 +348,13 @@ double multiplikation_3Zahlen(double Zahl1,double Zahl2,double Zahl3)
{ {
return Zahl1*Zahl2*Zahl3; return Zahl1*Zahl2*Zahl3;
} }
double normaleDivision(double dZahl1, double dZahl2)
{
double result = dZahl1/dZahl2;
printf("Ergebniss: %d", result);
if(dZahl2==0)
{
return 0;
}
return result;
}

2
src/funktion.h

@ -62,5 +62,5 @@ double viereckUmfang(double a, double b);
double trapezUmfang(double a, double b, double h); double trapezUmfang(double a, double b, double h);
double multiplikation_2Zahlen(double Zahl1,double Zahl2); double multiplikation_2Zahlen(double Zahl1,double Zahl2);
double multiplikation_3Zahlen(double Zahl1,double Zahl2,double Zahl3); double multiplikation_3Zahlen(double Zahl1,double Zahl2,double Zahl3);
double normaleDivision(double dZahl1, double dZahl2);
#endif #endif

8
src/main.c

@ -6,7 +6,7 @@
int main() int main()
{ {
double a,b,c,d,h,x1,s1,x2,x3,z1,z2,z3,p1,p2,p3,m,x,y,z,ein,prozent,Zahl1,Zahl2,Zahl3,eingabe1,eingabe2,r;
double a,b,c,d,h,x1,s1,x2,x3,z1,z2,z3,p1,p2,p3,m,x,y,z,ein,prozent,Zahl1,Zahl2,Zahl3,dZahl1,dZahl2,eingabe1,eingabe2,r;
int n,dezimal; int n,dezimal;
a = getValue('a'); a = getValue('a');
b = getValue('b'); b = getValue('b');
@ -281,4 +281,10 @@ int main()
Zahl2=getValue('2'); Zahl2=getValue('2');
Zahl3=getValue('3'); Zahl3=getValue('3');
multiplikation_3Zahlen(Zahl1, Zahl2, Zahl3); multiplikation_3Zahlen(Zahl1, Zahl2, Zahl3);
printf("Zahl1:");
dZahl1=getValue('D');
printf("Zahl2:");
dZahl2=getValue('F');
normaleDivision(dZahl1,dZahl2);
} }
Loading…
Cancel
Save