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 16h26min de 8 de março de 2026 por MegaManx3 (discussão | contribs) (Criou página com '{{DISPLAYTITLE:abs}} This function can be used to return the absolute value of a negative integer. <pre> function int abs (int x) { if (x < 0) return -x; return x; } </pre> category:Sample ACS functions')
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)

This function can be used to return the absolute value of a negative integer.

function int abs (int x)
{
    if (x < 0)
        return -x;

    return x;
}