- Give a definition of a class named Arithmetic whose methods are three add() and multiply() and one subtract() and divide().
- Parameter for add() and multiply() should be two, three and four int respectively.
- Parameter for subtract() and divide() should be two int.
- Applying method calling in the main(), test your program by calling the following methods:
add(1,3)
add(1,3,4,5)
multiply(2,3,4)
multiply(1,1)
subtract(3,1)
divide(5,2)
can anyone please assist me in doing this?