write a program in java to enter 10 numbers and display the even numbers and finally print the sum of odd
Answers
Answer:
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++)
Missing: finally | Must include: finally
Explanation:
Answer:
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.
Here is the source code of the Java Program to Calculate the Sum of Odd & Even Numbers. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
Explanation:
mark me as the brainlist