Math.CelingMath.FloorMath.DivRem与Math.BigMul

Posted Blogger

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Math.CelingMath.FloorMath.DivRem与Math.BigMul相关的知识,希望对你有一定的参考价值。

返回大于或等于指定数字的最小整数。例如:

double a=Math.Celing(0.00);  //0

double a=Math.Celing(0.40);  //1

double a=Math.Celing(0.60);  //1

double a=Math.Celing(1.00);  //1

double a=Math.Celing(1.10);  //2

 

返回小于或等于指定数字的最大整数。例如:

double g=Math.Floor(1.00);   //1

double k=Math.Floor(1.90);   //1

double l=Math.Floor(2.00);   //1

double m=Math.Floor(2.10);   //1

 

返回两个32位有符号整数的商,并将余数作为输出参数传递。例如:

int ys;

double s=Math.DivRem(5,3,out ys);  //s=1;ys=2

 

生成两个32位数字的完整乘积。例如:

long cj=Math.BigMul(2,3);  //6

以上是关于Math.CelingMath.FloorMath.DivRem与Math.BigMul的主要内容,如果未能解决你的问题,请参考以下文章