124th Problem 2016

Geometry Level 2

Candice saw a cube with volume 9993948264 m 3 9993948264 \text{m}^3 . Find the cube's side length in cm \text{cm} .


Check out the set: 2016 Problems .


The answer is 215400.

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.

1 solution

  • After some coding in python3, I made a cubing function as such, and you can plug in numbers, and it will work:

def findthecuberoot(z):

a = z**(1/3)

a = int(round(a,0))

return(a)

print(findthecuberoot(9993948264))

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...