. Write a C++ Code to get a multiline statement Str1 from a user with a ‘$’ as return character (Hint:
using getline function). Write a function to create another string Str2 that will contain the last half part
of a string Str1 plus the reverse of first half of a string Str1 (Hint: use concatenation and remove enter
character with space).

Respuesta :

Answer:

#include <iostream>

using namespace std;

int main()

{

   string s1, s2;

   cout << "Enter string s1: ";

   getline (cin, s1);

   s2 = s1;

   cout << "s1 = "<< s1 << endl;

   cout << "s2 = "<< s2;

   return 0;

}

Explanation: