Diferencia entre revisiones de «menor»
De ArduWiki
(→Sintaxis) |
(→Referencias) |
||
(No se muestran 7 ediciones intermedias del mismo usuario) | |||
Línea 14: | Línea 14: | ||
== Ejemplo == | == Ejemplo == | ||
− | < | + | <syntaxhighlight lang="c++"> |
− | </ | + | if (x < 9){ |
+ | //Es menor | ||
+ | }else{ | ||
+ | //Es mayor o igual | ||
+ | } | ||
+ | </syntaxhighlight> | ||
== Vea también == | == Vea también == | ||
− | + | <categorytree mode=all>Operador logico</categorytree> | |
− | + | <categorytree mode=all>Operador bit a bit</categorytree> | |
− | + | <categorytree mode=all>Funciones bit y byte</categorytree> | |
− | |||
− | |||
== 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] | ||
− | [[Category: | + | [[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