public class wrong {
public static void main(String[] args) {
double y = 8.0;
double x = 10.01;
double last = mystery(x,y);
y = 8.0;
System.out.println("x = "+ x +" and y = "+y);
mystery(x,y);
System.out.println("x = "+ x +" and y = "+ answer);
int z = 5;
System.out.println("z = "+z);
}
public static double mystery(double num1, double num2) {
double answer= 867.5309;
return answer;
}
}