Question: Using C#. Create a console application that will print out your first name and last name, with correct punctuation (e.g. upper case characters where needed,

Using C#. Create a console application that will print out your first name and last name, with correct punctuation (e.g. upper case characters where needed, like the first letter of each name). To get the characters, create two arrays, the first one with all of the lower-case characters in the alphabet. The second array will have all of the upper case letters in the alphabet. If you have special characters in your name that are outside of the standard English alphabet, you can disregard this or you can add them to your arrays as well. Using your two arrays, access the correct elements to concatenate your name and output it to the console window. Feel free to use the following code to get you started:

char[] lowercaseLetters = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' };

Input can be taken to print the name using any of the loops.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!