1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50:
| #include <stdio.h> float Summe(float,float,float); float Subtraktion(float,float,float); float Multiplikation(float,float,float); float Division(float,float,float); int main (void) { float a; float b; float c; printf("Geben sie einen Wert für a ein\n"); scanf("%f",&a); printf("Geben sie einen Wert für b ein\n"); scanf("%f",&b); printf("Bitte geben sie den Operanten ein\n"); char Operant=getchar(); if(b>0) { c=Summe(a,b,c); c=Subtraktion(a,b,c); c=Multiplikation(a,b,c); c=Division(a,b,c); printf("Das Ergebnis von %f %c %f = %f\n",a,Operant,b,c); } else { printf("0 ist kein Zulässiger Wert für b\n"); } return 0; } float Summe(float a,float b,float c) { c=a+b; return(c); } float Subtraktion(float a,float b,float c) { c=a-b; return(c); } float Multiplikation(float a,float b,float c) { c=a*b; return(c); } float Division(float a,float b,float c) { c=a/b; return(c); } |