Вы находитесь на странице: 1из 4

Prev Page Next Page

Java Program to Sort Names in an Alphabetical Order

This is a Java Program to Sort Names in an Alphabetical Order.


Enter size of array and then enter all the names in that array. Now with the help of compareTo operator we can easily sort names in
Alphabetical Order.
Here is the source code of the Java Program to Sort Names in an Alphabetical Order. 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 Alphabetical_Order
3. {
4. public static void main(String[] args)
5. {
6. int n;
7. String temp;
8. Scanner s = new Scanner(System.in);
9. System.out.print("Enter number of names you want to enter:");
10. n = s.nextInt();
11. String names[] = new String[n];
12. Scanner s1 = new Scanner(System.in);
13. System.out.println("Enter all the names:");
14. for(int i = 0; i < n; i++)
15. {
16. names[i] = s1.nextLine();
17. }
18. for (int i = 0; i < n; i++)
19. {
20. for (int j = i + 1; j < n; j++)
21. {
22. if (names[i].compareTo(names[j])>0)
23. {
24. temp = names[i];
25. names[i] = names[j];
26. names[j] = temp;
27. }
28. }
29. }
30. System.out.print("Names in Sorted Order:");
31. for (int i = 0; i < n - 1; i++)
32. {
33. System.out.print(names[i] + ",");
34. }
35. System.out.print(names[n - 1]);
36. }
37. }

Output:

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

Enter number of names you want to enter:5


Enter all the names:
bryan
adam
rock
chris
scott
Names in Sorted Order:adam,bryan,chris,rock,scott

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 Split an Array from Specified Position
Next Page - Java Program to Print the Odd & Even Numbers in an Array

Deep Dive @ Sanfoundry:


1. C Programming Examples on Combinatorial Problems & Algorithms
2. Java Programming Examples on Graph Problems & Algorithms
3. C++ Programming Examples on Combinatorial Problems & Algorithms
4. C Programming Examples using Recursion
5. Java Programming Examples on Data-Structures
6. C# Programming Examples on Arrays
7. C# Programming Examples on Sorting
8. Java Programming Examples on Combinatorial Problems & Algorithms
9. C Programming Examples on Searching and Sorting
10. C Programming Examples on Arrays

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
Cloud Computing Questions
Computer Science Questions
All Stream Questions & Answers

converted by W eb2PDFConvert.com
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

Вам также может понравиться