Inhaltsverzeichnis

cbrt()

#include <cmath>

double cbrt (double x) 

Liefert die Kubikwurzel $\sqrt[3]{x}$ von x.

Parameter

x Radikand

Ergebnis

Rückgabewert: Kubikwurzel.

Siehe auch

pow().

Beispiel

cbrt.cpp
#include <cmath>
#include <iostream>
 
int main()
{
  std::cout << "cbrt(8.0) = " << std::cbrt(8.0) << '\n';
}