kennen:lib:cos
Inhaltsverzeichnis
cos()
Parameter
x | Winkel im Bogenmaß |
Ergebnis
Rückgabewert: cos(x).
Siehe auch
Beispiel
- cos.cpp
#include <cmath> #include <iostream> #include <iomanip> int main() { const auto pi = std::acos(-1.0); std::cout << "# x cos(x)\n"; for (auto x : {0.0, pi/6, pi/4, pi/3, pi/2}) { std::cout << std::setw(8) << x << " " << std::cos(x) << '\n'; } }
kennen/lib/cos.txt · Zuletzt geändert: 2016-11-20 12:22 von 127.0.0.1