| <<< | Index | >>> |
log( x ); // natural logarithm of x
pow( x, y ); // x raised to power y
sin( x ); // trigonometric sine of x
sqrt( x ); // square root of x
tan( x ); // trigonometric tangent
#include <cmath>
int main()
{
double result = sqrt( 1234.5 );
return 0;
}
| <<< | Index | >>> |