Question: Write a program call FancyMyName which asks you to write a program that tests and using the different methods for working with Strings. This program
Write a program call FancyMyName which asks you to write a program that tests and using the different methods for working with Strings. This program will ask the user to enter their first name and their last name, separated by a space Read the user's response using Scanner. Separate the input string up into two strings, one containing the first name and one containing the last name. Hint: You can accomplish this by using the indexOfO. Find the position of the space, and then using substring0 to extract eachof the two names. Also output the number of characters in each name, initials. The initials are the first letter of the first name together with the first letter of the last name A sample run of the program should look something like this: Please enter your first name and last name, separated by a space? Khadija Ashraf Sample Output: You entered the name: Khadija Ashraf Your first name is Khadija: has 7 characters Your last name is Ashraf: has 6 characters Your initials are: KA
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
