WRITE A PROGRAM TO FIND THE SUM OF EVEN NUMBERS AND ODD NUMBERS OF A GIVEN NUMBER USING JAVA
Answers
Answer:
Java Program to Calculate the Sum of Odd & Even Numbers
public class Sum_Odd_Even.
int n, sumE = 0, sumO = 0;
Scanner s = new Scanner(System.
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++)
Explanation:
This is a Java Program to Calculate the Sum of Odd & Even Numbers.
Enter the number of elements you want in array. Now enter all the elements you want in that array. We begin from the first element and check if it is odd or even. Hence we add that number into the required addition list dependng whether it is even or odd.
Answer:
Java Program to Calculate the Sum of Odd & Even Numbers
public class Sum_Odd_Even.
int n, sumE = 0, sumO = 0
Scanner s = new Scanner(System.
System. out. print("Enter the number of elements in array:");
n = s. nextInt();