vote up 2 vote down star

I am trying to write a division method, which accepts 2 parameters.

public static decimal Divide(decimal divisor, decimal dividend)
{
    return dividend / divisor;
}

Now, if divisor is 0, we get cannot divide by zero error, which is okay.

What I would like to do is check if the divisor is 0 and if it is, convert it to 1. Is there way to do this with out having a lot of if statements in my method? I think a lot of if()s makes clutter. I know mathematically this should not be done, but I have other functionality for this.

For example:

if(divisor == 0)
{
    divisor = 1;
}
return dividend / divisor;

Can it be done without the if() statement?

flag
1  
I guess this is your problem domain, but consider that your code is going to be returning a very different result if the divisor makes the very minor change from 0.000001 to 0.0 – Mike Kale May 27 at 15:23
I prefer YOUR code, than the conditional if statements. Much easier to read!! And that's what I want – Peter Gfader May 28 at 8:09

4 Answers

vote up 11 vote down check

You can do a conditional if statement like this. This is the same as IIF in VB.net

return dividend / ((divisor == 0) ? 1 : divisor);

Make sure you wrap your second half with () or you will get a divide error.

link|flag
You don't need two set of parentheses do you? return dividend / (divisor == 0 ? 1 : divisor); should do the trick – Brian Rasmussen May 27 at 15:03
No, I had an additional set you can do it like this as well: return dividend / (divisor == 0 ? 1 : divisor); – Jason Heine May 27 at 15:05
But you do need the () wrapping the value of the result, other wise you still get the divide by zero error – Jason Heine May 27 at 15:06
1  
@Brian - no, you don't need the two sets, you are correct. On the flip side though I sometimes find Jason's approach more readable. – Alexander Kahoun May 27 at 15:06
4  
If in doubt, add parentheses. – Sprintstar May 27 at 15:13
show 1 more comment
vote up 0 vote down

You could create your own type and overload the / operator to get the desired behaviour, if you really want. Implement the implicit conversion operators to avoid casting or type converting.

I don't think it would be a good idea, however, since it would add some runtime overhead; with the only benefit that you get some code that (arguably) looks a little cleaner.

link|flag
vote up 9 vote down

By using ?: operator

return (divisor == 0) ? divident : divident / divisor
link|flag
1  
+1 for pointing out that a division by 1 is unnecessary and just return the divident. – Michael Stum May 27 at 15:02
This good too, but I like other one for further expanding purpose. I give +1 for your help. – Heinrich Fröbe May 27 at 15:11
vote up 2 vote down

This is pretty much the same as an if statement, but it is cleaner.

return dividend / divisor == 0 ? 1 : divisor;
link|flag
this is not cleaner than an If statement – Peter Gfader May 28 at 8:11

Your Answer

Get an OpenID
or

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