GTU JAVA Practical 22
Write a recursive method that returns the smallest integer in an array. Write a test program that prompts the user to enter an integer and display its product.
				
					import java.util.Scanner;

class Practical_22 {
  public static void main(String[] args) {
    Scanner input = new Scanner(System.in);
    int product = 1;
    System.out.print("Enter five integers: ");
    int[] list = new int[5];
    for (int i = 0; i < list.length; i++) {
      list[i] = input.nextInt();
      product *= list[i];
    }
    System.out.println("The Product of elements is " + product);
  }
}
				
			
Output
Write a test program that prompts the user to enter an integer and display its product