peschels: JAVA

Beitrag lesen

funktion3.java:113: cannot find symbol
symbol  : variable a
location: class funktion3
result1=(-y+Math.sqrt((y*y)-(4*x*z)))/(2*a);

1.)In deiner Methode gibt es keine Variable a, nur die Variablen x,y,z,result1

funktion3.java:123: cannot find symbol
symbol  : variable a
location: class funktion3
result2=(-y-Math.sqrt((y*y)-(4*x*z)))/(2*a);

2.) Siehe 1.)

funktion3.java:151: rechnung1(double,double,double,double) in funktion3 cannot be applied to (double,double,double)
result1=rechnung1(a, b, c);

3.) Hier versuchst du, eine Methode, welche 4 Parameter als Übergabewert fordert(unnötig!!!) mit 3 Parametern aufzurufen.

funktion3.java:152: rechnung2(double,double,double,double) in funktion3 cannot be applied to (double,double,double)
result2=rechnung2(a, b, c);

4.) Siehe 3.)

Gruß peschels