Calculate n'th root of a number using Math.Pow function

  1. double rootval1 = Math.Pow(125, (1.0 / 3.0));//cube root of 125  
  2. double rootval2 = Math.Pow(125, (1.0 / 4.0));//4th root of 125  
  3. double rootval3 = Math.Pow(125, (1.0 / 10.0));//10th root of 125