hi
good
go through this code which ll give you idea about the square root,
DATA : in TYPE f VALUE 16 ,
out TYPE f .
CALL METHOD cl_foev_builtins=>square_root
EXPORTING
im_number = in
IMPORTING
ex_result = out.
WRITE out .
you can try this same for third root.
reward point if helpful.
thanks
mrutyun^
Add a comment