Diferencia entre revisiones de «menor»
De ArduWiki
(→Ejemplo) |
(→Referencias) |
||
Línea 32: | Línea 32: | ||
* [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] | ||
− | [[Category: | + | [[Category:Operador logico]] |
Revisión del 23:14 14 jun 2019
Descripción
Sintaxis
variable < valor; variable < expresion; variable1 < variable2;
Retorna
- Verdadero so es menos y falso si no.
Advertencias
Ejemplo
if (x < 9){
//Es menor
}else{
//Es mayor o igual
}