✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Яким буде результат виконання фрагменту програми:
int i=1, j=2, x;
if ( i < 0 )
{
if ( j < i )
x = j;
}
else
x = i;
cout << x << endl;