Question: Write a Java program that lets the user to enter 3 numbers, each in between 1-9. Then, form the expressions using the operators (addition, subtraction,
Write a Java program that lets the user to enter 3 numbers, each in between 1-9. Then, form the expressions using the operators (addition, subtraction, multiplication, and division). Given the order of the number is fix and the result of the expression must equal to 18. You can only use array to solve the problem.

Sample output: Enter 3 numbers [1-9] : 6 7 8 No Solution Enter 3 numbers [1-9] : 4 7 2 4 + 7 * 2 = 18 Enter 3 numbers [1-9] : 975 9 * (7 - 5) = 18 Enter 3 numbers (1-9] : 216 (2 + 1) * 6 = 18 Enter 3 numbers (1-9] : 4 2 9 (4- 2) * 9 = 18 4 / 2 * 9 = 18 4 / 02 / 9) = 18
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
