IDNLearn.com helps you find the answers you need quickly and efficiently. Our community is ready to provide in-depth answers and practical solutions to any questions you may have.
Sagot :
Given a product with recursive methods using recursion, the program that will allow for a user to enter 5 numbers is given below.
What program will allow for a user to enter 5 numbers is given below?
import java.util.Scanner;
class Main
{
public static void main(String[] args)
{
int[] arrray = new int[5]; // variable declaration
Scanner s = new Scanner(System.in); // scanner declaration
System.out.print("Enter five numbers:");
for(int i=0;i<5;i++) // Loop runs from 0 to 4 total 5 times
arrray[i] = s.nextInt(); // Accept array elements
System.out.println("Multiplication of 5 numbers is "+multiply(arrray,4)); // calling function
}
public static int multiply(int x[], int count) // Called function
{
if(count<0)
return 1; // It return 1
return x[count] * multiply(x, --count); // recursive calling
}
}
Learn more about programs:
https://brainly.com/question/26134656
#SPJ1
Thank you for joining our conversation. Don't hesitate to return anytime to find answers to your questions. Let's continue sharing knowledge and experiences! Your search for answers ends at IDNLearn.com. Thank you for visiting, and we hope to assist you again soon.