Respuesta :

The number 10 should be entered because the output is in increments of 10.

I hope this helps!

The code segment is an illustration of loops.

The blank should be completed with 10, to print 60 70 and 80.

The flow of the code segment is as follows:

  • The first line initializes x to 50
  • The second line is a while iterator, that repeats the last two lines as long as the value of x is less than 80
  • The next line increments the value of x
  • The last line prints the value of x

Notice that: x is initialized to 50

50, 60, 70 and 80 are all multiples of 10

This means that, the value of x must be incremented by 10, in order to print 60, 70 and 80

Hence, the blank should be completed with 10.

Read more about loops at:

https://brainly.com/question/8913497