Write a C++ program to create a new string of length 2 starting at the given index of a given string
- برمجة سي بلس بلس
- برمجة
- 2021-05-11
- MarwaMohammed
الأجوبة
#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;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال