✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Дан фрагмент программы, определить значения переменных x,y,z
void Func(double& a, double b, bool c)
{
b *= 2;
if (c==true)a = b+1;
else a = b-1;
}
…
x = 1.2;
y = 2.8;
z = false;
Func(x, y, z);