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

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

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

Sample Output:

el
th
on

الأجوبة

using System;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {
            Console.WriteLine(test("Hello", 1));
            Console.WriteLine(test("Python", 2));
            Console.WriteLine(test("on", 1));
            Console.ReadLine();
        }        
      public static string test(string s1, int index)
        {
            return index + 2 <= s1.Length ? s1.Substring(index, 2) : s1.Substring(0, 2);
        }
  }
}
هل كان المحتوى مفيد؟

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

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