✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Consider the following block of code, where each of the four (4) variables (a, b, c, and answer) stores an integer value :
if (a > b)
if (b > c)
answer = c;
else
answer = b;
else
if (a > c)
answer = c;
else
answer = a;
Which of the following sets of values for a, b, and c will cause answer to be assigned the value in variable b?