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