Computer Science, asked by lakshmiadnala, 11 months ago

HURRY UP!!!please can u answer this question...
write a Java Program to accept a number from the user....
To find the sum of odd numbers of the entered digit.
Ex. 1783
The sum is 1+7+3=11​

Answers

Answered by chandravirat13
1

Explanation:

import java.util.Scanner;

public class Sum_Odd_Even

{

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);

}

}

this is the answer of your question

Answered by yuvrajsingh66572
0

Answer:

hello plz come on your questions

Similar questions