Answer:
Explanation:
The following code is written in Java and first asks the user to enter the values for X and Y, it then saves those values in two different variables and uses them in the arithmetic expression given in the question and solves it. The answer is saved to the variable named result and displayed on the window.
class brainly{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.println("Enter value for x");
double valueX = in.nextDouble();
System.out.println("Enter value for y");
double valueY = in.nextDouble();
double result = (5.4 * valueX * valueY) - (12.3 * valueY * 18.23 * valueX) - 8.23;
System.out.println(result);
}
}