मराठी

Write a program in Java to store 20 numbers (even and odd numbers) in a Single Dimensional Array (SDA). Calculate and display the sum of all even numbers and all odd numbers separately. - Computer Applications

Advertisements
Advertisements

प्रश्न

Write a program in Java to store 20 numbers (even and odd numbers) in a Single Dimensional Array (SDA). Calculate and display the sum of all even numbers and all odd numbers separately.

थोडक्यात उत्तर

उत्तर

import java.util.*;
public class AQ1
{ public static void main(String] jp{
Scanner ob = new Scanner(System.in);
int []n = new int[6];
int even = 0, odd = 0;
System.out.println("Enter 20 numbers");

// INPUT AND ADDITION
for (int i = 0; i < n.length; i++)
{n[i] = ob.nextInt();
if (n[i] % 2 == 0)
even += n[i];
else
odd += n[i];
}

//OUTPUT
System.out.println("Sum of even numbers = " + even);
System.out.printIn("Sum of even numbers = " + odd);
}}
shaalaa.com
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 3: Arrays (Single Dimensional and Double Dimensional) - EXERCISES [पृष्ठ २४०]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 3 Arrays (Single Dimensional and Double Dimensional)
EXERCISES | Q VII. 1. | पृष्ठ २४०
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×