Here's A Question!!
...
......
Write a Java program to accept a word and arrange all the alphabets in ascending order and display the new word. Use 1D array.
......
...
No Spams!!
Answers
Answered by
5
hope this answer will be helpful
Attachments:
Answered by
3
Answer:
Java Program to Sort Names in an Alphabetical Order. public class Alphabetical_Order. 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
Similar questions