133,940 views
5 votes
5 votes
Can someone help please
c = 0 while (c < 11): c = c + 6 print (c)

User Billy Chan
by
2.6k points

1 Answer

23 votes
23 votes

Answer:

output:

6

12

Step-by-step explanation:

the while loop will continue to run until the condition is false. In this case, the condition is false when c is greater than 11. The loop will run 2 times, and the value of c will be 6 and 12.

User Brian Sweeney
by
3.1k points