Diferencia entre revisiones de «or»
De ArduWiki
(→Vea también) |
(→Referencias) |
||
Línea 47: | Línea 47: | ||
== Referencias == | == Referencias == | ||
* [https://www.arduino.cc/reference/es/language/functions/time/millis/ Guia de referencia de Arduino] | * [https://www.arduino.cc/reference/es/language/functions/time/millis/ Guia de referencia de Arduino] | ||
+ | * [https://programarfacil.com/blog/programacion/la-logica-en-la-programacion/ La lógica en la programacion] - Luis Del Valle | ||
[[Category:Estructura]] | [[Category:Estructura]] |
Revisión del 23:18 5 may 2019
Descripción
Es un operador boleano or || que permite unir dos expresiones lógicas de manera disyuntiva ("o"). Sus posibles resultados son dados por la siguiente tabla de verdad:
a | b | a || b |
---|---|---|
0 | 0 | 0 |
1 | 0 | 1 |
0 | 1 | 1 |
1 | 1 | 1 |
Sintaxis
espresion 1 || expresion 2
Retorna
Verdadero o falso.
Advertencias
- No confundir el operador boleano or ||, con el operador or bit a bit |.
Ejemplo
if (x 9 || x 20){
//Esta entre 10 y 19
}else{
//Esta fuera del rango
}
Vea también
- not (!)
- and (&&)
- xor (^)
- not bit a bit (~)
- and bit a bit (&)
- or bit a bit (|)
- xor bit a bit (^)
- bitshift right (>>)
- bitshift left (<<)
Referencias
- Guia de referencia de Arduino
- La lógica en la programacion - Luis Del Valle