#include <iostream>
#include <cmath>
int main() {
double num = 27;
double raizCubica = cbrt(num);
std::cout << "La raíz cúbica de " << num << " es: " << raizCubica << std::endl;
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: