Write a C# Sharp program to check if a given string begins with 'abc' or 'xyz'. If the string begins with 'abc' or 'xyz' return 'abc' or 'xyz' otherwise return the empty string
- برمجة سي شارب
- برمجة
- 2021-05-17
- MarwaMohammed
الأجوبة
using System;
namespace exercises
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(test("abc"));
Console.WriteLine(test("abcdef"));
Console.WriteLine(test("C"));
Console.WriteLine(test("xyz"));
Console.WriteLine(test("xyzsder"));
Console.ReadLine();
}
public static string test(string s1)
{
if (s1.StartsWith("abc"))
{
return "abc";
}
else if (s1.StartsWith("xyz"))
{
return "xyz";
}
else
{
return String.Empty;
}
}
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال