Answer:
3 6 18
Explanation:
<u>Code segment</u><u>:</u>
int i = 1, mult3 = 3;
while (mult3 < 20) {
// We assume the body of the while loop to be enclosed in {}
// Otherwise the code will print 3 in an infinite loop
System.out.print(mult3 + " ");
i++;
mult3 *= i;
}
Let us iterate through the while loop:
i=1 , mult3 = 3
i=2 , mult3 = 6
i=3 , mult3 = 18
i=4, mult3 = 72 ( The while loop terminates)
So the code will print out the following result:
3 6 18