000
03.12.2006, 17:40 Uhr
frankf
|
hallo zusammen, kann mir hier bitte jemand weiterhelfen? das programm läuft bei mir nicht und ich weiss auch nicht wo hier der fehler is :/ danke im vorraus vg frank
#include <stdio.h> #include <stdlib.h> #include <math.h>
int main(int argc, char *argv[]) { float a,b,c,d; double z,x1,x2; printf("Bitte geben sie eine Zahl a ein: "); scanf("%f", &a); printf("Bitte geben sie eine Zahl b ein: "); scanf("%f", &b); c = -(a/2); d = ((c)*(c))-b; if (d>0) { z = sqrt(d); x1 = -c + z; x2 = -c – z; printf("\nx1 = %f", x1); printf("\nx2 = %f\n",x2); } else { printf("Keine Reelle Loesung\n"); } system("PAUSE"); return 0; } |