sqrt, sqrtf, sqrtl
Calcola la radice quadrata.
double sqrt( double x ); float sqrt( float x ); // C++ only long double sqrt( long double x ); // C++ only float sqrtf( float x ); long double sqrtl( long double x );
Parametri
- x
Valore a virgola mobile non negativo
Note
Poiché C++ consente l'overload, è possibile chiamare overload di sqrt che accettino tipi float e long double. In un programma C, sqrt accetta e restituisce sempre double.
Valore restituito
La funzione sqrt restituisce la radice quadrata di x. Per impostazione predefinita, se x è negativo, sqrt restituisce un valore NaN indefinito.
Input |
Eccezione SEH |
Eccezione _matherr |
---|---|---|
± QNAN,IND |
none |
_DOMAIN |
- ∞ |
none |
_DOMAIN |
x<0 |
none |
_DOMAIN |
Requisiti
Funzione |
Intestazione C |
Intestazione C++ |
---|---|---|
sqrt, sqrtf, sqrtl |
<math.h> |
<cmath> |
Per informazioni sulla compatibilità, vedere Compatibilità.
Esempio
// crt_sqrt.c
// This program calculates a square root.
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
int main( void )
{
double question = 45.35, answer;
answer = sqrt( question );
if( question < 0 )
printf( "Error: sqrt returns %f\n", answer );
else
printf( "The square root of %.2f is %.2f\n", question, answer );
}