Sascha B

Sascha B

  • NA
  • 340
  • 0

Math.Pow can't handle fractions ?

Mar 22 2011 6:23 AM
Hello,

I saw this problem today.
I used to calculate this: varX = Math.Pow(varx, 1/3);
Everytime I get only an integer that is completly wrong!
But if I use this: varX = Math.Pow(varx, 0.333333);
Then the result is allright...
What is wrong with this function?
I can't express 1/3 as a double number cause it's endless.

Please help me...

Answers (5)