Ativa o menu
Alternar menu de preferências
Alternar menu pessoal
Não autenticado(a)
Your IP address will be publicly visible if you make any edits.
Revisão de 16h41min de 8 de março de 2026 por MegaManx3 (discussão | contribs) (Criou página com 'Esta função calcula a potência n-ésima de x.<pre> function int pow (int x, int n) { int y = 1; while (n-- > 0) y *= x; return y; } </pre>')
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)

Esta função calcula a potência n-ésima de x.

function int pow (int x, int n)
{
    int y = 1;
    while (n-- > 0) y *= x;
    return y;
}