namespace cpp {}

C++ lernen, kennen, anwenden

Benutzer-Werkzeuge

Webseiten-Werkzeuge


kennen:lib:cos

cos()

#include <cmath>

double cos (double x) 

Liefert den Kosinus von x.

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

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki