230k views
0 votes
Create a MONOGRAM application that prompts the user to enter their first, middle, and last names, and then displays a monogram with the first and middle initials in lowercase and the last initial in uppercase.

User Nonagon
by
8.0k points

1 Answer

4 votes

Final answer:

To create a monogram application, prompt the user for their first, middle, and last names, extract the initials, and display the monogram.

Step-by-step explanation:

Monogram Application



One way to create a monogram application is to prompt the user to enter their first, middle, and last names. Then, using programming code, you can extract the first and middle initials in lowercase and the last initial in uppercase. Finally, you can display the monogram to the user.



Example:



User input: First name: John, Middle name: Christopher, Last name: Smith



Monogram: jcS

User Michael Snyder
by
8.2k points