Define a recursive function named powerRaiser that returns the value of its type integer parameter base, raised to the power of its integer parameter power. The function assumes that power is a positive integer. Hint: 2 1 = 2 2 3 = 2 *2 2
What will be an ideal response?
```
int powerRaiser( int base, int power )
{
int ans;
if (power == 1)
ans = base;
else
ans = base * powerRaiser( base, power - 1);
return ans;
}
```
You might also like to view...
Which is the output of the following statements? System.out.print("Hello "); System.out.println("World");
a. Hello World b. HelloWorld c. Hello World d. World Hello
With _______, a class is derived from several base classes.
Fill in the blank(s) with the appropriate word(s).
What is recursive ease?
a. A subproblem large enough to solve recursively b. Ease of conversion to divide and conquer c. Process of converting to iterative algorithm d. Ease of implementing a data structure recursively
The Display Record Count server behavior provides information in the ____ format.
A. Record x B. Record x of z C. Records x to y D. Records x to y of z