Diferencia entre revisiones de «sq()»
De ArduWiki
(→Referencias) |
|||
(No se muestran 5 ediciones intermedias del mismo usuario) | |||
Línea 4: | Línea 4: | ||
== Sintaxis == | == Sintaxis == | ||
<pre> | <pre> | ||
− | + | sq(valor); | |
+ | sq(variable); | ||
</pre> | </pre> | ||
+ | |||
+ | == Parametros == | ||
+ | ;valor: numero a operar | ||
+ | ;variable: nombre de variable a operar | ||
== Retorna == | == Retorna == | ||
− | El cuadrado del numero. | + | El cuadrado del numero. Tipo [[long]]. |
== Advertencias == | == Advertencias == | ||
Línea 15: | Línea 20: | ||
== Ejemplos == | == Ejemplos == | ||
<syntaxhighlight lang="c++"> | <syntaxhighlight lang="c++"> | ||
− | + | byte n = sq(3); //9 | |
+ | sq(n); //81 | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Vea también == | == Vea también == | ||
− | + | <categorytree mode=all>Funciones matematicas</categorytree> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | == Referencias == | + | == Referencias externas == |
* [https://www.arduino.cc/reference/en/language/functions/math/sq/ Guia de referencia] | * [https://www.arduino.cc/reference/en/language/functions/math/sq/ Guia de referencia] | ||
− | [[Category:Funciones]] | + | [[Category:Funciones matematicas]] |
Revisión actual del 23:34 11 jun 2019
Contenido
Descripción
Calcula el cuadrado de un número: el número multiplicado por sí mismo.
Sintaxis
sq(valor); sq(variable);
Parametros
- valor
- numero a operar
- variable
- nombre de variable a operar
Retorna
El cuadrado del numero. Tipo long.
Advertencias
- Nada
Ejemplos
byte n = sq(3); //9
sq(n); //81
Vea también