« 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. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37.
import java.util.Scanner; public class Alphabetical_Order { public static void main(String[] args) { int n; String temp; Scanner s = new Scanner(System.in); System.out.print("Enter number of names you want to enter:"); n = s.nextInt(); String names[] = new String[n]; Scanner s1 = new Scanner(System.in); System.out.println("Enter all the names:"); for(int i = 0; i < n; i++) { names[i] = s1.nextLine(); } for (int i = 0; i < n; i++) { for (int j = i + 1; j < n; j++) { if (names[i].compareTo(names[j])>0) { temp = names[i]; names[i] = names[j]; names[j] = temp; } } } System.out.print("Names in Sorted Order:"); for (int i = 0; i < n - 1; i++) { System.out.print(names[i] + ","); } System.out.print(names[n - 1]); } }
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. Here’s 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
2
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 ionate 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 istration, 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 - 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 Copyright TOS & Privacy Jobs Bangalore Training Online Training SAN Training Developers Track Mentoring Sessions Us Sitemap © 2011-2017 Sanfoundry
converted by W eb2PDFConvert.com