学用 ASP.Net 之 System.Math 类


成员:
/* 字段 */
Math.E;             //2.71828182845905
Math.PI;            //3.14159265358979

/* 静态方法 */
Math.Abs;           //绝对值
Math.Acos;          //反余弦
Math.Asin;          //反正弦
Math.Atan;          //反正切
Math.Atan2;         //反正切, 两参数
Math.BigMul;        //int32 * int32 = int64
Math.Ceiling;       //取 >= 的最小整数
Math.Cos;           //余弦
Math.Cosh;          //双曲余弦
Math.DivRem;        //取商和余数
Math.Exp;           //求 e 的指定次幂
Math.Floor;         //取 <= 的最大整数
Math.IEEERemainder; //求余
Math.Log;           //自然对数
Math.Log10;         //以 10 为底的对数
Math.Max;           //取大
Math.Min;           //取小
Math.Pow;           //求幂
Math.Round;         //就近舍入, 可指定精度
Math.Sign;          //取符号, 或返回 -1、0、1 
Math.Sin;           //正弦
Math.Sinh;          //双曲正弦
Math.Sqrt;          //平方根
Math.Tan;           //正切
Math.Tanh;          //双曲正切
Math.Truncate;      //取整


练习:
//Truncate()、Floor()、Ceiling()
protected void Button1_Click(object sender, EventArgs e)
{
    double n1 = Math.Truncate(Math.PI); // 3

    double n2 = Math.Floor(2.5);        // 2
    double n3 = Math.Floor(-2.5);       //-3

    double n4 = Math.Ceiling(2.5);      // 3
    double n5 = Math.Ceiling(-2.5);     //-2

    TextBox1.Text = string.Concat(n1, "\n", n2, "\n", n3, "\n", n4, "\n", n5);
}

//就近舍入(取偶)
protected void Button2_Click(object sender, EventArgs e)
{
    double n1 = Math.Round(0.5);  // 0
    double n2 = Math.Round(1.5);  // 2
    double n3 = Math.Round(2.5);  // 2
    double n4 = Math.Round(3.5);  // 4
    double n5 = Math.Round(-0.5); // 0
    double n6 = Math.Round(-1.5); //-2
    double n7 = Math.Round(-2.5); //-2
    double n8 = Math.Round(-3.5); //-4

    TextBox1.Text = string.Concat(n1, "\n", n2, "\n", n3, "\n", n4, "\n", n5, "\n", n6, "\n", n7, "\n", n8);
}

//四舍五入
protected void Button3_Click(object sender, EventArgs e)
{
    double n1 = Math.Round(0.5, MidpointRounding.AwayFromZero);  // 1
    double n2 = Math.Round(1.5, MidpointRounding.AwayFromZero);  // 2 
    double n3 = Math.Round(2.5, MidpointRounding.AwayFromZero);  // 3
    double n4 = Math.Round(3.5, MidpointRounding.AwayFromZero);  // 4 
    double n5 = Math.Round(-0.5, MidpointRounding.AwayFromZero); //-1
    double n6 = Math.Round(-1.5, MidpointRounding.AwayFromZero); //-2
    double n7 = Math.Round(-2.5, MidpointRounding.AwayFromZero); //-3
    double n8 = Math.Round(-3.5, MidpointRounding.AwayFromZero); //-4

    TextBox1.Text = string.Concat(n1, "\n", n2, "\n", n3, "\n", n4, "\n", n5, "\n", n6, "\n", n7, "\n", n8);
}

//指定小数位数(0..28)的舍入
protected void Button4_Click(object sender, EventArgs e)
{
    double n1 = Math.Round(3.126, 2);  // 3.13
    double n2 = Math.Round(3.124, 2);  // 3.12

    double n3 = Math.Round(3.125, 2);  // 3.12
    double n4 = Math.Round(3.135, 2);  // 3.14

    double n5 = Math.Round(3.125, 2, MidpointRounding.AwayFromZero);  // 3.13
    double n6 = Math.Round(3.135, 2, MidpointRounding.AwayFromZero);  // 3.14

    TextBox1.Text = string.Concat(n1, "\n", n2, "\n", n3, "\n", n4, "\n", n5, "\n", n6);
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值