Candice saw a cube with volume . Find the cube's side length in .
Check out the set: 2016 Problems .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
def findthecuberoot(z):
a = z**(1/3)
a = int(round(a,0))
return(a)
print(findthecuberoot(9993948264))