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

posted @ 2024-11-14 09:45  huiy_小溪  阅读(1)  评论(0编辑  收藏  举报