Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
if(x2 < x1 <= x3) Por que da mensaje de error, en amarillo y un mensaje que dice: comparison like "Z <= X <= C" do not have their mathematical meaning [-Wparentheses] Gracias por la respuesta que pueda recibir...
@Casino
if(x2 < x1 <= x3)
In Python che funziona.
Ma in C/C++ devi usare
if (x2 < x1 && x1 <= x3)