WinBatch Tech Support Home

Database Search

If you can't find the information using the categories below, post a question over in our WinBatch Tech Support Forum.

TechHome

Math Related UDFs

Can't find the information you are looking for here? Then leave a message over on our WinBatch Tech Support Forum.

CubeRoot

#DefineFunction CubeRoot(num)
return( num ** (1/3.0) )
#EndFunction

while 1
   num=AskLine("Cube Rooter","Enter number","")
   if !IsFloat(num) then continue
   cubenum=CubeRoot(num)
   Message(strcat("Cube root of ",num),cubenum)
endwhile










Article ID:   W15334
File Created: 2002:09:05:13:51:22
Last Updated: 2002:09:05:13:51:22