Translations of this page?:

exp

Sintaxe:

    #include <cmath>
    double exp( double arg );

A função exp() devolve e (2.7182818) elevado a arg.

O C++ também fornece as seguintes formas sobre-carregadas (overload):

    #include <cmath>
    float exp( float arg ); // igual a expf() em C99
    long double exp( long double arg ); // igual a expl() em C99

Tópicos Relacionados: log, pow, sqrt

 
• • • SitemapRecent changesRSScc