calcProduct() This method returns a value and it has a param…
calcProduct() This method returns a value and it has a parameter called nums that matches the data type returned from getData(). The returned value, should correspond to data type of nums. So for instance, if nums is a float array, then the returned value should be a float. Multiply all the values of nums together and return that product. printResults() This method returns nothing and has the parameter product. Parameter sum should match the returned data type of calcProduct(). In this method you will print the message “The product of all the values is ” followed by whatever the the product is.
Read DetailsWrite a program that uses all 4 methods (the main method and…
Write a program that uses all 4 methods (the main method and the other 3). For full credit include the javadoc with all of the methods (except for main). You may use intellij, but make sure you have a program in box below before time runs out.
Read Details