Logic & Coding Homework 11 Quarter 3
public class homework11 {
public static void main(String[] args)
{
//Your methods must be written in recursive form.
//1. Write a recursive method that finds the factorial of a number.
//2. Write a recursive method that returns the power of a number.
//3. Write a recursive method that prints every element in an array.
//4. Write a recursive method that determines whether a number is prime or not.
//5. Write a recursive version of the Fizz Buzz algorithm
}
//Your methods written below here.
}