C#中Math的使用总结

简介:

1、向上进位取整。Math.Ceiling

    例如: Math.Ceiling(32.6)=33; Math.Ceiling(32.0)=32;

2、向下舍位取整。Math.Floor

    例如: Math.Floor(32.6)=32;

3、取指定位数的小数。Math.Round

    例如:Math.Round(36.236,2)=36.24; Math.Round(36.232,2)=36.23;
4、取指定数字在使用指定底时的对数。Math.Log

    例如:一本16开的书,计算对开了几次。Math.Log(16,2)=4;

分类:  ASP.NET
本文转自左正博客园博客,原文链接:http://www.cnblogs.com/soundcode/p/3296071.html ,如需转载请自行联系原作者
相关文章
|
JavaScript 前端开发
math对象是什么?有什么用?
math对象是什么?有什么用?
|
7月前
|
JavaScript 前端开发
Math对象是什么?有什么用?
Math对象是什么?有什么用?
45 0
|
8月前
Math常用方法,什么是math?
Math常用方法,什么是math?
117 0
|
Java
Math类
Math类
73 0
|
JavaScript 前端开发
Math.random();
Math.random();
101 0
Math.pow()
Math.pow()
81 0
Math.ceil()
Math.ceil()
155 0
4.2、Math数学对象(floor、random、sqrt、pow、abs)
4.2、Math数学对象(floor、random、sqrt、pow、abs)
191 0
|
安全 iOS开发
iOS开发-math.h/ceil/floor/round
https://blog.csdn.net/acmicpc123/article/details/50280097
153 0
iOS开发-math.h/ceil/floor/round