×
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
6335    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.
Albert Einstein
Try not to become a man of success, but rather try to become a man of value.
Albert Einstein
1254
57.24
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     43527
01/01/2018     36478
25/06/2018     35475
28/06/2017     34547
02/08/2017     32975
01/08/2017     27458
06/07/2017     27205
15/05/2017     26841
14/07/2017     22455
21/04/2018     21107
softetechnologies