public class rechnung
{
public static void main (String[] args)
{
double a;
double b;
double x;
int z;
double y;
a = 13.5;
b = 9.5;
x = -4.3;
z = 5;
y = (a-b) * (a+b) / x+Z;
System.out.println ("y=(a-b)*(a+b) / (x+Z)"+y);
}
}
der editor gibt mir 3 fehler aus... aber ich finde sie nicht.. kann mir jemand helfen danke.
die fehler:
javac rechnung.java
rechnung.java:25: cannot find symbol
symbol : variable Z
location: class aufgabe4
y = (a-b) * (a+b) / x+Z;
^
rechnung.java:25: operator + cannot be applied to double,Z
y = (a-b) * (a+b) / x+Z;
^
rechnung.java:25: incompatible types
found : <nulltype>
required: double
y = (a-b) * (a+b) / x+Z;
^
3 errors
Exit code: 1