diff --git a/src/funktion.c b/src/funktion.c index f7b2d09..65b791d 100644 --- a/src/funktion.c +++ b/src/funktion.c @@ -343,4 +343,10 @@ double trapezUmfang(double a, double b, double h) { double multiplikation_2Zahlen(double Zahl1,double Zahl2) { return Zahl1*Zahl2; +} +double multiplikation_3Zahlen(double Zahl1,double Zahl2,double Zahl3) +{ + double result = Zahl1*Zahl2*Zahl3; + printf("Ergebniss : %d",result); + return result; } \ No newline at end of file diff --git a/src/funktion.h b/src/funktion.h index c3d7510..269730e 100644 --- a/src/funktion.h +++ b/src/funktion.h @@ -61,5 +61,6 @@ double viereckFlaeche(double a, double b); double viereckUmfang(double a, double b); double trapezUmfang(double a, double b, double h); double multiplikation_2Zahlen(double Zahl1,double Zahl2); +double multiplikation_3Zahlen(double Zahl1,double Zahl2,double Zahl3); #endif diff --git a/src/main.c b/src/main.c index aa774be..18bd1e2 100644 --- a/src/main.c +++ b/src/main.c @@ -6,7 +6,7 @@ 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,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,eingabe1,eingabe2,r; int n,dezimal; a = getValue('a'); b = getValue('b'); @@ -275,4 +275,12 @@ int main() Zahl1=getValue('1'); Zahl2=getValue('2'); multiplikation_2Zahlen(Zahl1,Zahl2); + + printf("Zahl1:"); + Zahl1=getValue('1'); + printf("Zahl2:"); + Zahl2=getValue('2'); + printf("Zahl3:"); + Zahl3=getValue('3'); + multiplikation_3Zahlen(Zahl1, Zahl2, Zahl3); }