product = 1;
i = 1;
(i <= n)
product = product * i;
i = i + 1;
This loop has no final statement.
Return to lesson.