What does the following fragment of code display? What do you think the programmer intended the code to do, and how would you fix it
int product = 1;int max = 20;for (int i = 0; i <= max; i++) product = product * i;System.out.println("The product is " + product);
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.