5. 数学函数

返回弧度角 x 的正弦:float sin(float x)

返回弧度角 x 的余弦:float cos(float x)

返回弧度角 x 的正切:float tan(float x)

返回以弧度表示的 x 的反正弦:float asin(float x)

返回以弧度表示的 x 的反余弦:float acos(float x)

返回以弧度表示的 x 的反正切:float atan(float x)

四舍五入:float round(float x)

返回大于或等于 x 的最小的整数值:int ceil(float x)

返回整数 x 的绝对值:int abs(int x)

返回浮点数 x 的绝对值:float fabs(float x)

求平方根:float sqrt(float x)

返回小于或等于x的最大整数:float floor(float x)

返回x的y次幂:float pow(float x, float y)

返回x以底数为10时的对数:float log10(float x)