C# 中的 Math 类提供了许多数学函数,用于执行各种常见的数学运算。以下是 Math 类中的一些常用方法:
double result = Math.Abs(-5.5); // 返回 5.5
double result = Math.Acos(0.5); // 返回 1.0471975511965979 (对应 60 度)
double result = Math.Asin(0.5); // 返回 0.5235987755982989 (对应 30 度)
double result = Math.Atan(1); // 返回 0.7853981633974483 (对应 45 度)
double result = Math.Atan2(1, 1); // 返回 0.7853981633974483 (对应 45 度)
double result = Math.Ceiling(4.3); // 返回 5.0
double result = Math.Cos(Math.PI); // 返回 -1.0
double result = Math.Cosh(0); // 返回 1.0
double result = Math.Exp(1); // 返回 2.718281828459045
double result = Math.Floor(4.7); // 返回 4.0
double result = Math.Log(Math.E); // 返回 1.0
double result = Math.Log10(100); // 返回 2.0
int result = Math.Max(5, 8); // 返回 8
int result = Math.Min(5, 8); // 返回 5
double result = Math.Pow(2, 3); // 返回 8.0
double result = Math.Round(4.6); // 返回 5.0
int result = Math.Sign(-5); // 返回 -1
double result = Math.Sin(Math.PI / 2); // 返回 1.0
double result = Math.Sinh(0); // 返回 0.0
double result = Math.Sqrt(25); // 返回 5.0
double result = Math.Tan(Math.PI / 4); // 返回 1.0
double result = Math.Tanh(0); // 返回 0.0
这些方法提供了广泛的数学功能,可以满足许多常见的计算需求。有些方法接受弧度作为参数,而其他方法接受角度作为参数。在使用这些方法时,应确保使用正确的单位。