Q. What’s wrong?
Code:for (int k = 2, k <=12, k++)
β
Correct Answer: (A)
the variable must always be the letter i when using a for loop
for (int k = 2, k <=12, k++)
You must be Logged in to update hint/solution