Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write the function insideOut(). If a string size is even and two or more, the middle two characters are removed and placed at the back

Write the function insideOut(). If a string size is even and two or more, the middle two characters are removed and placed at the back and front of the result. If the size is odd and three or more, then the middle three characters are removed. The first is placed at the back of the string, the last is placed at the front, and the middle one is discarded.

Here are some examples:

insideOut("hello")->"lhoe" insideOut("a")->"a" insideOut("ab")->"ba" insideOut("cat")->"tc" insideOUt("frog")->"ofgr" 

Complete the following file:

image text in transcribedQuestion 4:

Write the function processName(). It's input is a full name in the form (First MI. Last). Your job is to use string member functions to break the name into the first name, last name and middle initial, and return the processed name in the form "Last, First MI.".

Use the string member functions substr(), find(), rfind(), find_first_not_of(), find_last_not_of() and at() to solve this problem.

You may assume:

  • that every name will have exactly one word for the first and last names and a single character, followed by a period for the middle initial.
  • There will be at least one space separating each of the portions of the input name, but there may be more spaces.
  • image text in transcribed
main.cpp 1 #include 2 using namespace std; 3 string insideOut(const string& s) 4 { 5 // Write your function here 6 7 } Submit #include using namespace std; 1 2 3 4 5 /** Processes a name containing First MI. Last. @param s the name formatted as described. @return the name processed to "Last, First MI. Include the quotes in the returned name. */ string processName(const string& s) 7 8 9 10 11 12 13 14 15 16 string result; // Process the name here return result; } Submit

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional Microsoft SQL Server 2012 Administration

Authors: Adam Jorgensen, Steven Wort

1st Edition

1118106881, 9781118106884

More Books

Students also viewed these Databases questions

Question

The board of directors has chosen (their, its) officers.

Answered: 1 week ago

Question

Which persons umbrella is this?

Answered: 1 week ago

Question

Have you given John and Nancy a list of parts?

Answered: 1 week ago