Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this code but it doesn't work!

public class Trial
{
    public static void main (String [] args)
    {
        int average;
        int m = 0;

        int [] nums = {1,6,8,9,10,60,72};

        average = getAverage(int [] nums);
    }

    public static int getAverage(int [] a)
    {
        int sum = 0;
        for(int i=0; i<a.length; i++)
            sum = sum +a[i];

        int avg = sum/a.length;
        return avg;
    }
}

Where is the problem ? I need to get the average of that array by calling a method that calculate the average.

share|improve this question
1  
What doesn't work about it? – Edward Thomson Jan 10 '12 at 19:44
Remove the declaration in the call, just pass "nums". – Dave Newton Jan 10 '12 at 19:44
what problem do you have? – Shamim Hafiz Jan 10 '12 at 19:44
Also, consider using the expression: for (int i : a) { sum += i; } – Dilum Ranatunga Jan 10 '12 at 19:50

4 Answers

up vote 8 down vote accepted

Change your method call:

average = getAverage(nums);
share|improve this answer
Thanks.. this was my mistake – AbdullahR Jan 10 '12 at 19:56
You are welcome. – Bhesh Gurung Jan 10 '12 at 19:57

I see two problems:

  1. average = getAverage(int [] nums) should read average = getAverage(nums).
  2. The function returns an int. You might want to consider using floating-point math for the result. Otherwise you're truncating the answer to the nearest int.
share|improve this answer
Yeah it works! silly mistake :( Yeah, I need it to be as the nearest integer – AbdullahR Jan 10 '12 at 19:54
to the nearest? so you need to make a Round or truncate or something because this line int avg = sum/a.length; may raise you an exception when you get a floating point – Mr. Jan 10 '12 at 19:58
@Mr. No, it won't throw an exception. It'll quietly truncate. – NPE Jan 10 '12 at 20:00
@Mr. - The entire thing is integer math, there's no way an exception will be thrown due to 'floating point'. The only sort of exception that could be encountered is if the array is empty (divide by zero). Explicitly invoking Round() may be called for (although casting one or both operators would be necessary). – Clockwork-Muse Jan 10 '12 at 20:03
Thanks for the explanation didn't know about it, that it was called explicity, thanks! – Mr. Jan 10 '12 at 20:09
average = getAverage(int [] nums); //this is wrong

average = getAverage(nums); //this is right. Just sintaxis.
share|improve this answer
thanks. It works now : ) – AbdullahR Jan 10 '12 at 19:55

avg can be a floating point value, but your implementation will always return integer.

Consider using floating point value for sum and avg and change return type to double.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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