C# math.pow cube root calculation
问题 How can I calculate a cube root of (0.015*(0.05*0.05)) ? I tried the following solutions: double result = Math.Pow(0.015 * (0.05 * 0.05), 1.0/3.0); and I am getting 0.03347 . The same calculation from Volframalpha: 0.015*(0.05*0.05)^0.33 gives 0.00207 . What am I doing wrong here ? 回答1: There are three concerns that I have. You are utilizing Math.Pow() in one part of your expression, however, you will want to use Math.Sqrt() in the first part of the expression which was later given during the