✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
What is the display produced by the following sequence of instructions, assuming the user has entered the values 50, 25, 40, 45, 42 in order?
n <- 42
Do
Read(val)
If val < n Then
Write("More ")
Else
If val > n Then
Write("Less ")
End If
End If
While val != n
Write("Bravo!")