Mwnci cbrt() Function

Syntax

cbrt(number)

Description

The cbrt() function returns the cube root of a given number. The cube root method is a mathematical operation that finds a number which, when multiplied by itself twice, gives the original number x

Example

include("math")
result = cbrt(27)
println("Cube root of 27:", result)


Cube root of 27:3