Diferencia entre revisiones de «floor()»
De ArduWiki
(→Vea también) |
|||
(No se muestran 3 ediciones intermedias del mismo usuario) | |||
Línea 4: | Línea 4: | ||
== Sintaxis == | == Sintaxis == | ||
<pre> | <pre> | ||
+ | floor(valor); | ||
floor(variable); | floor(variable); | ||
</pre> | </pre> | ||
== Parámetros == | == Parámetros == | ||
− | ;variable: variable a operar. | + | ;valor: valor tipo [[float]] a operar. |
+ | ;variable: nombre de variable tipo [[float]] a operar. | ||
== Retorno == | == Retorno == | ||
Línea 22: | Línea 24: | ||
== Vea también == | == Vea también == | ||
− | + | <categorytree mode=all>Funciones matematicas</categorytree> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | [[Category:Funciones]] | + | == Referencias externas == |
+ | [[Category:Funciones matematicas]] |
Revisión actual del 23:33 11 jun 2019
Contenido
Descripción
Redondea un numero tipo float hacia abajo.
Sintaxis
floor(valor); floor(variable);
Parámetros
Retorno
Retorna un numero tipo long.
Advertencias
Nada.
Ejemplo
floor(PI); //3
Vea también