三角函数换算

   public string sin(double a)
    {
        return Math.Sin(Math.PI * (a / 180)) + "";
    }


    public string cos(double a)
    {
        return Math.Cos(Math.PI * (a / 180)) + "";
    }

猜你喜欢

转载自blog.csdn.net/chong90/article/details/68067072