Answered You can hire a professional tutor to get the answer.
Write the recursive function that accepts two arguments into parameters x and y. The function should return the value of x times y.
Write the recursive function that accepts two arguments into parameters x and y. The function should return the value of x times y. Remember, multiplication can be performed as repeated addition of addition as follows:
7*4=4+4+4+4+4+4+4
Write the "demo-driver" class that contains the main() method. It will prompt the user for input and get the values from the keyboard.