开方用什么函数?
开方方法:开平方就用Math.Sqrt,开n次方:Math.Pow(double,1/n);例如:doublea=Math.Sin(0.5);是求弧度为0.5的sin值再赋给a。Math类中有很多静态数学函数,可以直接调用,前提是先使用usingSystem;语句引入System命名空间。