M square minus n square upon m plus n square multiply by m square plus mn plus n square upon mcube minus n square
Answers
Answered by
1
Answer:
a program to return the difference between the sum of odd numbers and
even numbers from an array of positive integers in java
Note
You are expected to write code in the findOddEven Difference function only
which will receive the first parameter as the number of items in the array and
second parameter as the array itself. You are not required to take input from the
console
Example
Finding the difference between the sum of odd and even numbers from a list of 5
numbers
Input
input1:5
input2: 10 11 7 12 14
Output
-18
Explanation
The first parameter (5) is the size of the array. Next is an array of integers. The
calculation of difference between sum of odd and even numbers is as follows
(11 + 7) - (10 + 12 + 14 = 18-36 = - 18
metti
Similar questions