我有一个产品品牌菜单,我想分成4列.因此,如果我有39个品牌,那么我希望每列的最大项目数为10(在最后一列中有一个间隙.以下是我如何计算列的项目数(使用C#):
int ItemCount = Convert.ToInt32(Math.Ceiling(Convert.ToDecimal(BrandCount) / 4m));
所有转换对我来说都很难看.有没有更好的方法在C#中对整数进行数学运算?
你可以施放:
int ItemCount = (int) Math.Ceiling( (decimal)BrandCount / 4m );
此外,因为int
/ decimal
结果decimal
你可以删除其中一个演员:
int ItemCount = (int) Math.Ceiling( BrandCount / 4m );
为什么你甚至使用小数?
int ItemCount = (BrandCount+3)/4;
在+3
确保你圆了,而不是下降:
(37+3)/4 == 40/4 == 10 (38+3)/4 == 41/4 == 10 (39+3)/4 == 42/4 == 10 (40+3)/4 == 43/4 == 10
一般来说:
public uint DivUp(uint num, uint denom) { return (num + denom - 1) / denom; }
Mod的更长的选择.
ItemCount = BrandCount / 4; if (BrandCount%4 > 0) ItemCount++;