C#学习 数学函数(21)
int x = 10,
y = 2,
z = -1;
double d = 9.99;
1. 最大值
Math.Max(x, y); // 10
2. 最小值
Math.Min(x, y); // 2
3. 开平方
Math.Sqrt(x); // 3.1622776601683795
4. 绝对值
Math.Abs(z); // 1
5. 四舍五入
Math.Round(d); // 10
6. 指数
Math.Pow(x,y); // 100
本文来自博客园,作者:huiy_小溪,转载请注明原文链接:https://www.cnblogs.com/huiy/p/18545362