Write a C++ program to create a new string of length 2 starting at the given index of a given string

  • برمجة سي بلس بلس
  • برمجة

Write a C++ program to create a new string of length 2 starting at the given index of a given string

Sample Output:

el
th
on

الأجوبة

#include <iostream>
using namespace std;

string test(string s1, int index)
        {
            return index + 2 <= s1.length() ? s1.substr(index, 2) : s1.substr(0, 2);
        }
         
int main() 
 {
  cout << test("Hello", 1) << endl;  
  cout << test("Python", 2) << endl; 
  cout << test("on", 1) << endl; 
  return 0;    
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...