зеркало из https://github.com/github/ruby.git
11 строки
132 B
C
11 строки
132 B
C
|
#include <math.h>
|
||
|
|
||
|
double cbrt(double x)
|
||
|
{
|
||
|
if (x < 0)
|
||
|
return -pow(-x, 1/3.0);
|
||
|
else
|
||
|
return pow(x, 1/3.0);
|
||
|
}
|
||
|
|