Question: Write a RECURSIVE method called powerOfTen thatwill find and return 10 n for any integer n (n is theparameter). The method should return a double
Examples:
powerOfTen(3) should return 1000.0
powerOfTen(-3) should return 0.001
The method should not print anything.
public static double powerOfTen(int n) {
???
}
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
