Write a program email.cc that takes an email address in the following format: firstname.lastname@hotmail.com, such as jon.doe@hotmail.com, extracts from it the firstname and the lastname, and prints them in the following format: Lastname, Firstname. Your program should have and use at least the following functions: (a) getEmaillAddress that prompts a user to enter an email address as a string and returns it. (b) extract that takes as its parameter an email address and returns the firstname and lastname. (c) capitalize that takes as its parameter a string and capitalize its first letter. (d) display that takes as its parameters 2 strings corresponding to the firstname and lastname, and displays them in the following format: Lastname, Firstname. Your program should repeatedly prompts the user to enter the email address in the previous format. The program should then output it as in the examples below. jon.doe@uleth.ca Doe, Jon Try again (Y/N) -- Y carol.smith@uleth.ca Smith, Carol Try again (Y/N) -- Y lili.vantool@uleth.ca Vantool, Lili Try again (Y/N) -- N Good bye!
Write a
(a) getEmaillAddress that prompts a user to enter an email address as a string and
returns it.
(b) extract that takes as its parameter an email address and returns the firstname and
lastname.
(c) capitalize that takes as its parameter a string and capitalize its first letter.
(d) display that takes as its parameters 2 strings corresponding to the firstname and
lastname, and displays them in the following format: Lastname, Firstname.
Your program should repeatedly prompts the user to enter the email address in the previous format. The program should then output it as in the examples below.
jon.doe@uleth.ca
Doe, Jon
Try again (Y/N) -- Y
carol.smith@uleth.ca
Smith, Carol
Try again (Y/N) -- Y
lili.vantool@uleth.ca
Vantool, Lili
Try again (Y/N) -- N
Good bye!
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images