Diferencia entre revisiones de «menor»
De ArduWiki
(→Vea también) |
(→Referencias) |
||
Línea 30: | Línea 30: | ||
* [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:Operador | + | [[Category:Operador comparador]] |
Revisión actual del 23:39 26 sep 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
}
Vea también