“逆对数就是指数运算、等于10^0.03376=1.0808”
double a=2;
double b=Math.Pow(a,3);
可得b=8
专有的平方根函数Math.Sqrt(a)也可由Math.Pow(a,0.5)代替。