a task | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

a task

Where is the error? public class Pj9 { public static void main(String[] args) { int [] a = {1,2,3,4}; System.out.println(sum); } public double arithmetic(int[] pj9) { int sum = 0; for (int i = 1; i < pj9.length; i++) { sum += pj9[i]; } return sum / pj9.length; } }

21st Dec 2017, 8:46 PM
Andrei
Andrei - avatar
4 Answers
+ 5
Have you tried running it in the Code Playground? It should say something about why it isn't working You have println(sum) but there is no reference to 'sum' in the main method. 'sum' is defined in your 'arithmetic' method, so you need to call System.out.println(arithmetic(a)) to get the output I think you're looking for. Also you will need to make the method static, because main is static and you haven't made an object using 'new'. Its a bit difficult to understand exactly why when you're first starting out, but when practising with this kind of setup make your methods static in the class you have the main method - until you learn some more ;)
21st Dec 2017, 9:03 PM
Dan Walker
Dan Walker - avatar
+ 1
Thank you so much! Did As you said: created a new object, derived arithmetic (a). The result is 2.25. True the original idea was to get the result 2.5)))
22nd Dec 2017, 4:52 AM
Andrei
Andrei - avatar
+ 1
public class Pj9 { public static void main(String[] args) { int [] a = {1,2,3,4}; Pj9 sum = new Pj9(); System.out.println(arithmetic (a)); } public static double arithmetic(int[] pj9) { int sum = 0; for (int i = 1; i < pj9.length; i++) { sum += pj9[i]; } return (double)sum / pj9.length; } }
22nd Dec 2017, 4:53 AM
Andrei
Andrei - avatar
0
int i = 0; ----> result 2.5
22nd Dec 2017, 5:11 AM
Andrei
Andrei - avatar