Prev Page Next Page
Java Program to Find the Number of Non-Repeated Elements in an Array
This is a Java Program to Find the Number of Non-Repeated Elements in an Array.
Enter size of array and then enter all the elements of that array. Now using for loops we find the uncommon elements in both arrays. Hence we
get no. of Non-Repeated elements as output.
Here is the source code of the Java Program to Find the Number of Non-Repeated Elements 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 Non_Repeated
3. {
4. public static void main(String[] args)
5. {
6. int n, flag = 0, count = 0;
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("Non repeated elements are:");
17. for(int i = 0; i < n; i++)
18. {
19. for(int j = 0; j < n; j++)
20. {
21. if(i != j)
22. {
23. if(a[i] != a[j])
24. {
25. flag = 1;
26. }
27. else
28. {
29. flag = 0;
30. break;
31. }
32. }
33. }
34. if(flag == 1)
35. {
36. count++;
37. System.out.print(a[i]+" ");
38. }
39. }
40. System.out.println("");
41. System.out.println("Number of non repeated elements are:"+count);
42. }
43. }
Output:
converted by W eb2PDFConvert.com
$ javac Non_Repeated.java
$ java Non_Repeated
Enter no. of elements you want in array:8
Enter all the elements:
2
4
6
3
2
4
7
3
Non repeated elements are:6 7
Number of non repeated elements are:2
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 Find Union & Intersection of 2 Arrays
Next Page - Java Program to Accept a Matrix of Order MxN & Interchange the Diagonals
Deep Dive @ Sanfoundry:
1. C Programming Examples on Strings
2. C Programming Examples
3. Java Programming Examples on Graph Problems & Algorithms
4. Java Programming Examples on Collection API
5. C Programming Examples on Matrix
6. C# Programming Examples on Matrix
7. C Programming Examples on Arrays
8. Java Programming Examples on Combinatorial Problems & Algorithms
9. Java Programming Examples on Numerical 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*
converted by W eb2PDFConvert.com
Email*
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
converted by W eb2PDFConvert.com
1000 Python Questions
1000 PHP Questions & Answers
1000 Hadoop Questions
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