0
/ 10
Complete this method so it prints out the product of the two parameters.
Searching for: product
Complete this method so it prints out the product of the two parameters.
The method below returns the product of numbers from 1 to i
. For example, product(4)
should return 24 (or 1 * 2 * 3 * 4). However,...