Discussion:
Q: Create a Java program that demonstrates a static recursive method that accepts two integer arguments into the parameters x and y. The method should return the value of x times y.
Remember, multiplication can be performed as repeated addition: 7 * 4 = 4 + 4 + 4 + 4 + 4 + 4 + 4.