#include <cmath>
#include
double sqrt (double x)
Liefert die Quadratwurzel $\sqrt{x}$ von nichtnegativen x.
x
Rückgabewert: Quadratwurzel. Bei negativem x tritt ein EDOM-Fehler auf.
EDOM
pow().
#include <cmath> #include <iostream> int main() { std::cout << "sqrt(2) = " << std::sqrt(2) << '\n'; }