Math, asked by kirtisinghkuldeep, 2 months ago

WAP to enter 10 numbers and print the sum of
odd numubens and product of even numbers​

Answers

Answered by Anonymous
1

Answer:

They are 1,3,5,7,9,11,13,15,17,19 and so on. Now, we need to find the sum of these numbers. Below is the table for the sum of odd numbers.

Step-by-step explanation:

mark me as brainliest

Answered by akarsh91140
1

Step-by-step explanation:

class a

{

public static void main (String args[])

{

int s=0,p=1;

Scanner sc=new Scanner(System.in);

for(int i=1;i<=10;i++)

{

System.out.println("enter");

int j=sc.nextInt()

if(j%2!=0)

s=s+j;

else

p=p*j;

}

System.out.println("odd sum"+s);

System.out.println("even product"+p);

}

}

Similar questions