vote up 2 vote down star
1

I have a menu of product brands that I want to split over 4 columns. So if I have 39 brands, then I want the maximum item count for each column to be 10 (with a single gap in the last column. Here's how I'm calculating the item count for a column (using C#):

int ItemCount = Convert.ToInt32(Math.Ceiling(Convert.ToDecimal(BrandCount) / 4m));

All that conversion seems really ugly to me. Is there a better way to do math on integers in C#?

flag

4 Answers

vote up 13 vote down check

You can cast:

int ItemCount = (int) Math.Ceiling( (decimal)BrandCount / 4m );

Also, because int/decimal results in a decimal you can remove one of the casts:

int ItemCount = (int) Math.Ceiling( BrandCount / 4m );
link|flag
This was what I was about to write. +1. – OregonGhost Oct 30 '08 at 13:41
It is what I wound up writing. :) +1 as well. – John Rudy Oct 30 '08 at 13:41
Wow, that is so much cleaner. Thanks. – Ben Mills Oct 30 '08 at 13:49
vote up 4 vote down

Why are you even using a decimal?

int ItemCount = (BrandCount+3)/4;

The +3 makes sure you round up rather than down:

(37+3)/4 == 40/4 == 10
(38+3)/4 == 41/4 == 10
(39+3)/4 == 42/4 == 10
(40+3)/4 == 43/4 == 10

In general:

public uint DivUp(uint num, uint denom)
{
    return (num + denom - 1) / denom;
}
link|flag
I like the trick, but I think it's harder to see the purpose of the code. The answer I accepted is easy to come back and maintain. – Ben Mills Oct 30 '08 at 14:11
You call this a trick? I don't envy you trying to maintain any but the most trivial of programs... – Motti Nov 1 '08 at 19:05
seriously — ceil(a/b)=((a+b-1)/b) is a "trick" programmers have been using for years before C#. – cce Nov 15 at 23:21
vote up 2 vote down

Perhaps try something like this ... Assuming BrandCount is an integer. You still have the same casts, but it might be clearer:

int ItemCount = (int)(Math.Ceiling(BrandCount / 4m));

I'm not a huge fan of the Convert class, and I avoid it whenever possible. It always seems to make my code illegible.

link|flag
I totally agree with you -> Convert.ToInt32(foo) is ugly compared to (int)foo. – David Kemp Oct 30 '08 at 13:42
So does the cast do exactly the same thing as the Convert? – Ben Mills Oct 30 '08 at 13:43
@Ben Mills: In this case, yes (converting numbers). In general, no. – OregonGhost Oct 30 '08 at 13:46
vote up 5 vote down

A longer alternative with Mod.

ItemCount = BrandCount / 4;
if (BrandCount%4 > 0) ItemCount++;
link|flag
Longer? Simpler! +1 – Treb Oct 30 '08 at 13:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.