For any integers x and y, min(x, y) and max(x, y) denote the minimum and the maximum of x and y, respectively. For example, min(5, 2)=2 and max(5, 2)=5. For the integer w, whatis the value of min(10, w) ?

Respuesta :

Answer:

[tex]min(10,w)=\left \{ {{w} \quad\text{for } w <10 \atop {10} \quad\text{for } w\ge 10} \right.[/tex]

Step-by-step explanation:

No value of w is given, so we can only tell you the meaning of min(10, w):

When w < 10, min(10, w) is w.

When w ≥ 10, 10 is the smaller of the two values, so min(10, w) = 10.