You are on page 1of 4

Prev Page Next Page

Java Program to Print the Odd & Even Numbers in an Array

This is a Java Program to Print the Odd & Even Numbers in an Array.
Enter size of array and then enter all the elements of that array. Now using for loop and if codition we use to distinguish whether given integer
in the array is odd or even.
Here is the source code of the Java Program to Print the Odd & Even Numbers in an Array. The Java program is successfully compiled and run
on a Windows system. The program output is also shown below.

1. import java.util.Scanner;
2. public class Even_Odd
3. {
4. public static void main(String[] args)
5. {
6. int n;
7. Scanner s = new Scanner(System.in);
8. System.out.print("Enter no. of elements you want in array:");
9. n = s.nextInt();
10. int a[] = new int[n];
11. System.out.println("Enter all the elements:");
12. for (int i = 0; i < n; i++)
13. {
14. a[i] = s.nextInt();
15. }
16. System.out.print("Odd numbers:");
17. for(int i = 0 ; i < n ; i++)
18. {
19. if(a[i] % 2 != 0)
20. {
21. System.out.print(a[i]+" ");
22. }
23. }
24. System.out.println("");
25. System.out.print("Even numbers:");
26. for(int i = 0 ; i < n ; i++)
27. {
28. if(a[i] % 2 == 0)
29. {
30. System.out.print(a[i]+" ");
31. }
32. }
33. }
34. }

Output:

converted by W eb2PDFConvert.com
$ javac Even_Odd.java
$ java Even_Odd

Enter no. of elements you want in array:5


Enter all the elements:
1
2
3
4
5
Odd numbers:1 3 5
Even numbers:2 4

Sanfoundry Global Education & Learning Series 1000 Java Programs.


Heres the list of Best Reference Books in Java Programming, Data Structures and Algorithms.
Prev Page - Java Program to Sort Names in an Alphabetical Order
Next Page - Java Program to Find Union & Intersection of 2 Arrays

Deep Dive @ Sanfoundry:


1. Java Programming Examples on Graph Problems & Algorithms
2. C Programming Examples on Matrix
3. C Programming Examples using Recursion
4. C Programming Examples
5. Java Programming Examples on Numerical Problems & Algorithms
6. Java Programming Examples on Collection API
7. C# Programming Examples on Arrays
8. C Programming Examples on Arrays
9. Java Programming Examples on Combinatorial Problems & Algorithms
10. Java Programming Examples on Data-Structures

Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He
is Linux Kernel Developer and SAN Architect and is passionate about competency developments in these areas.
He lives in Bangalore and delivers focused training sessions to IT professionals in Linux Kernel, Linux
Debugging, Linux Device Drivers, Linux Networking, Linux Storage & Cluster Administration, Advanced C
Programming, SAN Storage Technologies, SCSI Internals and Storage Protocols such as iSCSI & Fiber Channel.
Stay connected with him below:
LinkedIn | Facebook | Twitter | Google+

Subscribe Sanfoundry Newsletter and Posts

Name*

Email*

converted by W eb2PDFConvert.com
Best Careers

Developer Tracks
SAN Developer
Linux Kernel Developer
Linux Driver Developer
Linux Network Developer

Live Training Photos


Mentoring
Software Productivity
GDB Assignment

Sanfoundry is No. 1 choice for Deep Hands-ON Trainings in SAN, Linux & C, Kernel Programming. Our Founder has trained employees of
almost all Top Companies in India such as VMware, Citrix, Oracle, Motorola, Ericsson, Aricent, HP, Intuit, Microsoft, Cisco, SAP Labs,
Siemens, Symantec, Redhat, Chelsio, Cavium, ST-Micro, Samsung, LG-Soft, Wipro, TCS, HCL, IBM, Accenture, HSBC, Mphasis, Tata-Elxsi,
Tata VSNL, Mindtree, Cognizant and Startups.

Best Trainings

SAN I - Technology
SAN II - Admin
Linux Fundamentals
Advanced C Training
Linux-C Debugging
System Programming
Network Programming
Linux Threads
Kernel Programming
Kernel Debugging
Linux Device Drivers

Best Reference Books

Computer Science Books


Algorithm & Programming Books
Electronics Engineering Books
Electrical Engineering Books
Chemical Engineering Books
Civil Engineering Books
Mechanical Engineering Books
Industrial Engineering Books
Instrumentation Engg Books
Metallurgical Engineering Books
All Stream Best Books

Questions and Answers

1000 C Questions & Answers


1000 C++ Questions & Answers
1000 C# Questions & Answers
1000 Java Questions & Answers
1000 Linux Questions & Answers
1000 Python Questions
1000 PHP Questions & Answers
1000 Hadoop Questions

converted by W eb2PDFConvert.com
Cloud Computing Questions
Computer Science Questions
All Stream Questions & Answers

India Internships

Computer Science Internships


Instrumentation Internships
Electronics Internships
Electrical Internships
Mechanical Internships
Industrial Internships
Systems Internships
Chemical Internships
Civil Internships
IT Internships
All Stream Internships

About Sanfoundry

About Us
Copyright
TOS & Privacy
Jobs
Bangalore Training
Online Training
SAN Training
Developers Track
Mentoring Sessions
Contact Us
Sitemap
2011-2017 Sanfoundry

converted by W eb2PDFConvert.com

You might also like