✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
What is the result of the following nested IF-THEN statement?
var iAge, iWeight: Integer;
begin iAge := 22; iWeight := 75;
if (iAge >= 18) then if (iWeight > 75) then ShowMessage('You are eligible to donate blood'); else ShowMessage('You are not eligible to donate blood'); else ShowMessage('You are not old enough to donate blood');
end;