程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> Math.Ceiling(),math.ceiling

Math.Ceiling(),math.ceiling

編輯:C#入門知識

Math.Ceiling(),math.ceiling


Math.Ceiling (Decimal) 返回大於或等於指定的十進制數的最小整數。 Math.Ceiling (Double) 返回大於或等於該指定雙精度浮點數的最小整數。

 

由 .NET Compact Framework 支持。

 可以把它叫做天花板

可以用於秒變成取分鐘

如Math.Ceiling (1.1)=2;      Math.Ceiling (1.0)=1;


SystemMathCeiling (postsTotal/pageSize)ToString();

pageSize,postsTotal的聲明類型有問題
應該為double或decimal
 

Bitmap image = new Bitmap((int)MathCeiling((c(checkCodeLength * 95)), 22)這句話什意思?

不知道是否C#代碼,若是:
1、Bitmap image ====> Bitmap* image.

2、Bitmap* image = new Bitmap((int)Math.Ceiling((c(checkCode.Length * 9.5)), 22); 意思是
聲明一個Bitmap對象的指針image, 並且利用 Bitmap的構造函數 Bimap(int,int)初始化。兩個int型參數大概分別表示位圖的寬、高。

寬由 checkCode對象的Length的9.5倍確定;高22.

(int)Math.Ceiling((c(checkCode.Length * 9.5))是把 Math.Ceiling函數的double型返回值強制轉換為int型。
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved