Returns the cubic root of a given number
Implemented by: Gambas
With variations:
Also written as:
CBR computes the cubic root of a given number.
DIM i AS INTEGER FOR i = -3 TO 3 PRINT i, Cbr(i) NEXT