kennen:lib:sqrt
Inhaltsverzeichnis
sqrt()
Parameter
x | Radikand ($x\geq 0$) |
Ergebnis
Rückgabewert: Quadratwurzel.
Bei negativem x
tritt ein EDOM
-Fehler auf.
Siehe auch
Beispiel
- sqrt.cpp
#include <cmath> #include <iostream> int main() { std::cout << "sqrt(2) = " << std::sqrt(2) << '\n'; }
kennen/lib/sqrt.txt · Zuletzt geändert: 2019-11-20 16:20 von 127.0.0.1