Write a C++ program to create a new string from a given string. If the two characters of the given string from its beginning and end are same return the given string without the first two characters otherwise return the original string


Write a C++ program to create a new string from a given string. If the two characters of the given string from its beginning and end are same return the given string without the first two characters otherwise return the original string

Sample Output:

cab
Python
cabab

الأجوبة

ابحث عن مسائل برمجة سي بلس بلس | C++ programming بالانجليزي

#include <iostream>
using namespace std;

string test(string s1)
          {
            if (s1.length() > 1 && s1.substr(0, 2) == s1.substr(s1.length() - 2))
            {
                return s1.substr(2);
            }
            else
            {
                return s1;
            }
        }
        
int main() 
 {
  cout << test("abcab") << endl;  
  cout << test("Python") << endl; 
  cout << test("abcabab") << endl;  
  return 0;    
}

محتاج مساعدة؟ تواصل مع مدرس اونلاين الان!