HI Gast!

Ich habe zwei Fehler entdeckt. Probier mal jetzt aus. Ich habe leider kein
compailer zuverfügung.

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main()
{

double x,y,z;
printf("x eingabe");
scanf("%lf",&x);

printf("y eingabe");
scanf("%lf",&y);

z=x+y;

printf("z=%lf",z);
}