SUNDAY, 12 JULY 2026
Guide For School logo Guide For SchoolStudy Guide For Students On Java Programming
Physics | Chemistry | Mathematics
ICSE | ISC | CBSE
Guide For School logo Guide For SchoolICSE and ISC Resources

Printing the initials of a Name or First letters of each word of a Sentence

19 February 2015

Question: Write a program to accept a sentence and print only the first letter of each word of the sentence in capital letters separated by a full stop...

Question:

Write a program to accept a sentence and print only the first letter of each word of the sentence in capital letters separated by a full stop.
Example :
INPUT SENTENCE : “This is a cat”
OUTPUT : T.I.A.C.

Solution:

Java
/** The class Initials takes a sentence/name as input and prints it's initials.
* @author : www.guideforschool.com
* @Program Type : BlueJ Program - Java
*/

import java.util.Scanner;
class Initials
{
public static void main(String args[])
{
        Scanner sc = new Scanner(System.in);
String s;
char x;
int l;
System.out.print("Enter any sentence: ");
s=sc.nextLine();
s=" "+s; //adding a space infront of the inputted sentence or a name
s=s.toUpperCase(); //converting the sentence into Upper Case (Capital Letters)
l=s.length(); //finding the length of the sentence</span>
System.out.print("Output = ");

for(int i=0;i<l;i++)
{
x=s.charAt(i); //taking out one character at a time from the sentence
if(x==' ') //if the character is a space, printing the next Character along with a fullstop
System.out.print(s.charAt(i+1)+".");
}
}
}

Output:

Enter any sentence: Java for school students
Output = J.F.S.S.

Explanation:

In this program we are using the following logic:

● We know that the letters of the initials are characters which come immediately after a blank space.
● Using the above logic, we can extract all the letters of an initial, except the first letter, because there is no space in front of the first word, and hence the logic mentioned above won’t work for the first word of the sentence.
● So, after inputting a sentence, we add a space before it, to fit in the above mentioned logic, in order to extract the First letter of the initials.
● Next we convert the inputted sentence into Upper Case (Capital letters) because, the characters of the Initials are all in Upper Case.
● Then, inside the for loop which runs though the complete length of a sentence, we extract each characters one by one and check whether it is a blank space or not.
● Finally, if the character is a blank space, then we print the character after it along with a full stop.

That’s it ! It was as easy as drinking a cup of coffee. Enjoy !

Leave a Reply

Your email address will not be published. Comments are reviewed before appearing publicly.

Send a comment or correction

Study smarter

Everything you need for ICSE and ISC Computer

Programs, revision notes, solved papers and practical guidance—organized for quick study.

Browse all resources →