JAVA
4.26 LAB: Brute force equation solver Numerous engineering and scientific applications require finding solutions to a set of equations. Ex: 8x+7y 38 and 3x-5y–1 have a solution x = 3, y-2. Given integer coefficients of two linear equations with variables x and use brute force to find an integer solution for x and y in the range-10 to 10 Ex: If the input is 87 38 3-5 -1 the output is 3 2 Use this brute force approach: For
OR
OR