x | - |
Bei unzulässigem Argument wird errno
auf EDOM
gesetzt.
Rückgabewert: Hauptwert von arccos(x) im Bereich [0, pi],
im Fehlerfall NAN
(not a number).
#include <cmath> #include <iostream> int main() { double x = 0.5 * std::sqrt(3); std::cout << "Arcus cosinus von " << x << " = " << std::acos(x) << '\n'; }