Discuss the below program:
Writing Methods that Require a Single Parameter
Q: Program continuously prompts the user for an integer until the user enters 0. The program then passes the value to a method that computes the sum of all the whole numbers from 1 up to and including the entered number. Next, the program passes the value to another method that computes the product of all the whole numbers up to and including the entered number. I need to write the Java statements.