HEY THERE !
MY QUESTION IS FROM COMPUTER JAVA
write a program in Java to store 20 number (even or odd number) in a single dimensional array calculate and display the sum of all even number and all odd numbers separately
NO SPAM
if u know then only answer
else leave
Answers
Answer:
{
public static void main(String[] args)
{
int n, sumE = 0, sumO = 0;
Scanner s = new Scanner(System.in);
System.out.print("Enter the number of elements in array:");
n = s.nextInt();
int[] a = new int[n];
System.out.println("Enter the elements of the array:");
for(int i = 0; i < n; i++)
{
a[i] = s.nextInt();
}
for(int i = 0; i < n; i++)
{
if(a[i] % 2 == 0)
{
sumE = sumE + a[i];
}
else
{
sumO = sumO + a[i];
}
}
System.out.println("Sum of Even Numbers:"+sumE);
System.out.println("Sum of Odd Numbers:"+sumO);
}
}
Output:
$ javac Sum_Odd_Even.java
$ java Sum_Odd_Even
Enter the number of elements in array:6
Enter the elements of the array:
1
3
2
6
7
9
Sum of Even Numbers:8
Sum of Odd Numbers:20