vote up -9 vote down star

The following code in C#, should produce a Double result. Actual result is always an Int, if there is a remainder, the decimal portion is truncated. This does not make sense :

public double webDivide(double num1, double num2)
{
       return num1 / num2;
}

I am learning C# and .NET (come from years of experience in VB6 and VBA). This is just one of many issues as to why learning C# is more difficult than it ought to be.

flag
Could you give an example of how calling this function gives you the wrong answer? – Greg Beech Mar 23 at 20:28
webDivide(5,3) gives me 1.6666 repeating as expected – JaredPar Mar 23 at 20:29
webDivide(1,9) gives me .11111 repeating – LFSR Consulting Mar 23 at 20:32
If C# actually behaved as you describe, it would indeed be confusing and difficult to learn. However, it doesn't - you only get an int result from division if both operands are themselves int. – Bevan Mar 23 at 21:00
Like others have said, that is just not true. Your function will produce a double. If it didn't, your code would not compile because your signature states that you are returning a double. – Ed Swangren Mar 23 at 21:09
show 5 more comments

6 Answers

vote up 0 vote down check

You surely have another issue with that code, consider these passing tests:

    [TestMethod]
    public void TestMethod5()
    {
        Assert.AreEqual(webDivide((double)3, (double)2), 1.5);
        Assert.AreEqual(webDivide(3, 2), 1);
        Assert.AreEqual(webDivideAsIntended(3, 2), 1.5);
    }
    public double webDivide(double num1, double num2)
    {
        return num1 / num2; // the result of this / is int, but is implicitly converted to double
    }
    public double webDivide(int num1, int num2)
    {
        return num1 / num2;
    }
    public double webDivideAsIntended(int num1, int num2)
    {
        return (double)num1 / num2;
    }

Notice, how if I call the overload that uses double you get the right value. If I call the one that uses int, you get an int division. Also note that if you cast to double, it will give the desired result.

link|flag
Well, If I am explicitly declaring the method a double, and I am dividing 2 integers, and the result is a double (Ex. 3/2=1.5), than I should get a double. When I would do this in Visual Basic 6 or VBA, I would get the correct results. Seems compiler or C# is overriding my code. – ahpitre Mar 23 at 20:37
I surely understand the overload, using Double for the method parameters, but still if the method is double, and I want the user to enter integers, then the 1st implementation of method webDivide should result in a double, after all thats what I declared it. – ahpitre Mar 23 at 20:39
@ahpitre: the result will be a double, but the truncation occurs before the result gets turned into a double. If both operands are ints, the result is an int, which will then be converted to a double. – Harper Shelby Mar 23 at 20:43
@ahpitre I added another method that does what you want it to. – Freddy Rios Mar 23 at 20:56
@ahpitre, it IS returning a double. but the double value it is returning is going to be the result of the intgeger division of 3/2 , which, in Integer Division, is equal to 1 The compiler converts the integer 1 to the double 1.000 as it returns back to the calling routine(whatever that is) – Charles Bretana Mar 25 at 14:46
vote up 10 vote down

Not true. Integer division does result in an int, but double division results in a double.

public static void RunSnippet() {
   Console.WriteLine(Divide(3D, 4D)); // 0.75
   Console.WriteLine(Divide(3, 4));   // 0

   Console.WriteLine(Divide(3D, 4D).GetType()); // System.Double
   Console.WriteLine(Divide(3, 4).GetType());   // System.Int32
}

static double Divide(double x, double y) {
   return x / y;
}

static int Divide(int x, int y) {
   return x / y;
}
link|flag
I disagree. 3 divided by 2 (2 integers) = 1.5 (a double). Seems that VB is actually more logical, following the correct arithmethic rules, than C# is. – ahpitre Mar 23 at 21:25
Thanks to all for your answers, I guess that in C#, some things require you to code and work a bit more. – ahpitre Mar 23 at 21:26
Not so, even in old VB6, dividing 3\2 was equal to 1 (a backslash was thew way you did integer division in VB6) In VB, a forward slash FORCES the operands to be treated as doubles, overriding the types specified by the code... – Charles Bretana Mar 25 at 14:48
So, EVEN in VB, 3\2 = 1; 3/2 = 1.5 only because you are, (by using the forward slash divide symbol), telling the compiler to explicitly force the operands to be treated as doubles... – Charles Bretana Mar 25 at 14:50
vote up 5 vote down

My assumption is that your code isn't like what you've posted, but is actually something more like this:

int a = 4;
int b = 3;
double result = a / b;

Which, from your VB/VBA experience you'd expect to return 1.25 (repeating) but is actually returning 1.0. The reason for this is that C# has different behaviour with respect to division than VB.

In VB the default type of division is floating-point, so dividing 4 by 3 gives 1.25 even if the two inputs are integers. In C# the division is floating-point if either of the operands are floating point, but if both are integers then integer division is used, i.e.

int a = 4;
int b = 3;
double result = a / b; // integer division converted to double = 1.0

double a = 4.0;
int b = 3;
double result = a / b; // floating point division = 1.25

double a = 4.0;
double b = 3.0;
double result = a / b; // floating point division = 1.25

In VB/VBA terms you can see division with two integers as using VB's integer division operator, \, so when dividing two integers in C# the equivalent VB code would be:

Dim a As Integer
Dim b As Integer
Dim result as Double
a = 1
b = 2
result = a \ b // integer division, converted to double = 1.0

I can see that this difference in behaviour could be confusing when coming from a VB/VBA background, but it's just a different rule.

link|flag
I get your point. But I still think, that it doesn't make sense for C# to give you an int, if you specified a double in your code, in that regard VB6, despite being and underrated and inferior to C#, is being actually more useful and makes more sense. Go figure, Microsoft always does weird things. – ahpitre Mar 23 at 21:21
By he way, this is my actual code : public double webDivide(int num1, int num2) { return num1 / num2; } – ahpitre Mar 23 at 21:23
So your actual code is essentially what I've posted, which explains what you're seeing. – Greg Beech Mar 23 at 21:43
There's no right answer as to what is the 'correct' behaviour. VB made one design choice, C# made another - which reflects how C/C++ works so an integer is what a developer used to those languages would expect. Neither is better or worse, it's just a language design decision. – Greg Beech Mar 23 at 22:01
VB actually allows both choices, based on whether you use integer division w/backslash (\) or floating point division, w/forward slash (/) – Charles Bretana Mar 27 at 16:25
show 1 more comment
vote up 1 vote down

See this post that helps to explain what might be going on.

link|flag
vote up 0 vote down

Your function most certainly does return a double.

My guess is that you are accidentally casting the output of this function into an integer before you check it. Please provide that code.

link|flag
vote up 0 vote down

Ahpitre,

This works as advertised... Are you sure that you are not looking at the return value in some formatted display that is rounding the value of the methods' return value ? Try putting a break point where the value is returned and examine the value there...

link|flag
No. I tested the code using the builtin default web page, to test web services. I also copied the code to a Console application, and results are the same. Only if I specify doubles as both parameters, then will I get a double as a result. – ahpitre Mar 23 at 21:22
I suspect there might be a bug in my VS 2008 installation. I have VS from a demo, then IT upgraded the demo by entering a Key they bought. My version is Microsoft Visual Studio 2008 Version 9.0.21022.8 RTM. When I try to install the SDK 1.1 an error message stated that I did have a valid version. – ahpitre Mar 24 at 18:39
ahpitre, what do you mean "Only if I specify doubles as both parameters, then will I get a double as a result" Your sample code in yr question DOES specify doubles for both parameters... – Charles Bretana Mar 24 at 19:31
And, exactly as you say, the result is and should be a double... – Charles Bretana Mar 24 at 19:32

Your Answer

Get an OpenID
or

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