CMPINF 401 Xtra credit #1:
RECURSIVE MULTIPLICATION
Execute your program like this:
$ java Mult -3 14
(any two positive, negative or zero ints
)
Background
Starter file:
Mult.java
In lecture I mentioned an Xtra credit assignment worth 1% course credit ( 1 lab).
You may assume I will not test with huge numbers that will overflow the int MAX
Your program must allow me to pass in any two ints on the command line.
Don't hard code the two inputs. Use args[0] and args[1] like I already set up in starter file
The rules are commented into the starter.