TA贡献1773条经验 获得超3个赞
开方方法:开平方就用Math.Sqrt, 开n次方:Math.Pow(double, 1/n);例如:double a = Math.Sin(0.5);是求弧度为0.5的sin值再赋给a。Math类中有很多静态数学函数,可以直接调用,前提是先使用using System;语句引入System命名空间
TA贡献1891条经验 获得超3个赞
开平方就用Math.Sqrt, 开n次方:Math.Pow(double, 1/n);
举报