×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Write a program in java to display the following pattern. Write a programme in java to accept a month name and print the month number.
Write a programme to accept a word and display the alphabets in an alphabetical order. - Java
6709    Arnab De    11/06/2018

Write a programme to accept a word and display the alphabets in an alphabetical order.

First of all we convert the string into lower case. Now as we know, String is not a mutable, we convert the string into a StringBuffer Object. Now easily use the selection sort method on the StringBuffer object. Here we use a method setCharAt(), which is in the StringBuffer class but not in String Class.

softetechnologies
import java.util.*;
public class AlphaSort
{
    public static void main(String []args)
    {
        Scanner sc=new Scanner(System.in);
        System.out.print("Enter A String : ");
        String str=sc.nextLine();
        str=str.toLowerCase();
        StringBuffer sb=new StringBuffer(str);
        char c;
        for(int i=0;i<sb.length();i++)
        {
            for(int j=0;j<sb.length();j++)
            {
                if(sb.charAt(i)<sb.charAt(j))
                {
                    c=sb.charAt(i);
                    sb.setCharAt(i,sb.charAt(j));
                    sb.setCharAt(j,c);
                }
            }
        }
        System.out.println(sb.toString().trim());
    }
}
softetechnologies

Output

Enter A String : national Public school
aabcchiillnnooopstul

Write a program in java to display the following pattern. Write a programme in java to accept a month name and print the month number.
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Swami Vivekananda
Fill the brain with high thoughts, highest idrals, place them day and night before you, and out of that will come great work.
Swami Vivekananda
1418
69.48
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     50608
25/06/2018     42596
01/01/2018     41778
28/06/2017     39560
02/08/2017     38349
01/08/2017     32573
06/07/2017     32270
15/05/2017     31726
14/07/2017     27859
11/09/2018     27598
softetechnologies