New Exception and Double checking Exercise
- Create a method that takes in a double that must be positive. It should
divide the parameter input number 3 times by 3. Then it should multiply that
number by 27 to bring it back to the input number. It should return the difference
between the input number and the number that was divided 3 times and then
brought back.
- If the input number is negative, throw and IllegalArgumentException.