本文来自:http://www.cnblogs.com/del/archive/2011/01/03/1924746.html
 
成员:

/* 字段 */
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);
}

 
 
分类: C# 与 Net

学用 ASP.Net 之 System.Math 类的更多相关文章

  1. 学用 ASP.Net 之 System.Collections.ArrayList 类

    ArrayList 是 .Net 的动态数组. 主要成员: /* 静态方法 */ ArrayList.Adapter() //把其他 IList 对象包装为 ArrayList 使用 ArrayLis ...

  2. 08 正则表达式,Math类,Random,System类,BigInteger,BigDecimal,Date,DateFormat,Calendar

    正则表达式:    是指一个用来描述或者匹配一系列符合某个语法规则的字符串的单个字符串.其实就是一种规则.有自己特殊的应用. public class Demo2_Regex { public sta ...

  3. 基本类型包装类、System类、Math类、Arrays类、大数据运算

    1 基本类型包装类 Java中想对8种基本数据类型进行复杂操作很困难. 实际程序界面上用户输入的数据都是以字符串类型进行存储的. 程序开发中,需要把字符串转换成指定的基本数据类型. 1.1基本数据类型 ...

  4. 正则表达式、Calendar类、SimpleDateFormat类、Date类、BigDecimal类、BigInteger类、System类、Random类、Math类(Java基础知识十四)

    1.正则表达式的概述和简单使用 * A:正则表达式(一个字符串,是规则)     * 是指一个用来描述或者匹配一系列符合某个语法规则的字符串的单个字符串.其实就是一种规则.有自己特殊的应用. * B: ...

  5. JAVA学习第四十五课 — 其它对象API(一)System、Runtime、Math类

    一.System类 1. static long currentTimeMillis() 返回以毫秒为单位的当前时间. 实际上:当前时间与协调世界时 1970 年 1 月 1 日午夜之间的时间差(以毫 ...

  6. Java常用类之【Math类、Random类、System类、Runtime类】

    一.Math类 Math类 [绝对值]Math.abs();//返回对应类型的绝对值 [最大值和最小值]Math.max(int a, int b) ,Math.min(int a,int b);(其 ...

  7. java 基本类型包装类,system类,Math类,Assrays类,大数据运算

    实现字符串与基本数据之间转换 将字符串转成基本数据类型方法 例如:将字符串转成成int类型 String str ="123"; int a =Integer.parseInt(s ...

  8. 14-02 Java Math类,Random类,System类,BigDecimal类

    Math类 Math的方法 package cn.itcast_01; /* * Math:用于数学运算的类. * 成员变量: * public static final double PI * pu ...

  9. Java 基础 常用API (System类,Math类,Arrays, BigInteger,)

    基本类型包装类 基本类型包装类概述 在实际程序使用中,程序界面上用户输入的数据都是以字符串类型进行存储的.而程序开发中,我们需要把字符串数据,根据需求转换成指定的基本数据类型,如年龄需要转换成int类 ...

随机推荐

  1. 【LeetCode练习题】Minimum Depth of Binary Tree

    Minimum Depth of Binary Tree Given a binary tree, find its minimum depth. The minimum depth is the n ...

  2. IOS MVC

    简单的理解: V对M是不能通讯的. C对M通讯:API M对C通讯:Notification,KVO C对V通讯:Outlet V对C通讯:Target-action, Delegate,Dataso ...

  3. Cocos2d-x v3.0正式版尝鲜体验【1】 环境搭建和新建项目

    Cocos2d-x v3.0在前天最终公布正式版了,等了大半年最终出来了.一直没去碰之前的3.0各种beta,rc版本号,就想等正式版出来再尝试. 昨天也參加了触控科技在成都举办的沙龙活动.看到作者王 ...

  4. Android项目打包开启proguard的混淆优化带来的问题

    1.引入一个sdk以后.打包报错: [INFO] Unexpected error while evaluating instruction: [INFO]   Class       = [com/ ...

  5. vmware tools 安装

    转到虚拟机 > 安装 VMware Tools(或 VM > 安装 VMware Tools).注意:如果您运行的是轻量版的 Fusion.不带 VMware Tools 的 Workst ...

  6. JQ 操作样式,单选按钮跟复选框

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  7. bootstrap之 Badge 角标

    添加 .am-badge class 到 <div> 或者 <span> 元素. 默认样式     <span class="am-badge"> ...

  8. Java代理模式——静态代理模式

    一:代理模式 代理模式的作用是:为其他对象提供一种代理以控制这个对象的访问.在某些情况下,一个客户不想或者不能直接引用另一个对象,而代理对象可以在客户端和目标对象之间起到中介的作用. 二:代理模式设计 ...

  9. django 使用jquery ajax post数据问题

    django 开启了CSRF功能导致jquery ajax post数据报错 解决方法在post数据里引入csrfmiddlewaretoken: '{{ csrf_token }}'},同时需要在f ...

  10. ckeditor 使用手册

    CKEditor使用手册 在使用CKEditor过程中遇到了一些问题,现把它整理成手册,以便随时翻阅. 在页面<head>中引入ckeditor核心文件ckeditor.js <sc ...