Write a C++ program to create a new string of length 2, using first two characters of a given string. If the given string length is less than 2 use '#' as missing characters

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

Write a C++ program to create a new string of length 2, using first two characters of a given string. If the given string length is less than 2 use '#' as missing characters

Sample Output:

He
Py
a#
##

الأجوبة

#include <iostream>

using namespace std;

string test(string s1)
        {
           if (s1.length() >= 2)
            {
                s1 = s1.substr(0, 2);
            }
            else if (s1.length() > 0)
            {
                s1 = s1.substr(0, 1) + "#";
            }
            else
            {
                s1 = "##";
            }

            return s1;
        }
int main() 
 {
  cout << test("Hello") << endl;  
  cout << test("Python") << endl; 
  cout << test("a") << endl; 
  cout << test("") << endl;   
  return 0;    
}
هل كان المحتوى مفيد؟

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

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