Example.
Enter your name
Umesh Kumar Kushwaha
Initials are U.K.K.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
class InitialName {
public static void main(String args[]) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter your name");
String s = br.readLine(), s1 = "";
s = " " + s;
int len = s.length();
char a;
for (int i = 0; i < len; i++) {
a = s.charAt(i);
if (a == ' ') {
s1 = s1 + s.charAt(i + 1) + ".";
}
}
System.out.println("Initials are " + s1);
}
}
Output:
Enter your name
Umesh Kumar Kushwaha
Initials are U.K.K.
Enter your name
Umesh Kumar Kushwaha
Initials are U.K.K.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
class InitialName {
public static void main(String args[]) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter your name");
String s = br.readLine(), s1 = "";
s = " " + s;
int len = s.length();
char a;
for (int i = 0; i < len; i++) {
a = s.charAt(i);
if (a == ' ') {
s1 = s1 + s.charAt(i + 1) + ".";
}
}
System.out.println("Initials are " + s1);
}
}
Output:
Enter your name
Umesh Kumar Kushwaha
Initials are U.K.K.
|
No comments:
Post a Comment