Write a C# Sharp program to create a new string using 3 copies of the first 2 characters of a given string. If the length of the given string is less than 2 use the whole string

  • برمجة سي شارب
  • برمجة

Write a C# Sharp program to create a new string using 3 copies of the first 2 characters of a given string. If the length of the given string is less than 2 use the whole string

Sample Output:

ababab
PyPyPy
JJJ

الأجوبة

using System;

namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {
            Console.WriteLine(test("abc"));
            Console.WriteLine(test("Python"));
            Console.WriteLine(test("J"));
            Console.ReadLine();
        }

    public static string test(string s1)
          {
            string extra_Front = String.Empty;
  
            if (s1.Length < 2)
            {
                return s1 + s1 + s1;
            }
            else
            {
                extra_Front = s1.Substring(0, 2);
                return extra_Front + extra_Front + extra_Front;
            }
        }
   }
}
هل كان المحتوى مفيد؟

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

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