Write a C# Sharp program reverse all the words of a given string which have even length

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

Write a C# Sharp program reverse all the words of a given string which have even length.

Expected Output:

Original string: C# Exercises

Reverse all the words of the said string which have even length.:
#C Exercises

Original string: C# is used to develop web apps , desktop apps , mobile apps , games and much more.

Reverse all the words of the said string which have even length.:
#C si desu ot develop web sppa , desktop sppa , elibom sppa , games and hcum more.

الأجوبة

using System;
using System.Linq;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {
            string str1 = "C# Exercises";
            Console.WriteLine("Original string: " + str1);
            Console.WriteLine("\nReverse all the words of the said string which have even length.:\n" + test(str1));
            str1 = "C# is used to develop web apps , desktop apps , mobile apps , games and much more.";
            Console.WriteLine("\nOriginal string: " + str1);
            Console.WriteLine("\nReverse all the words of the said string which have even length.:\n" + test(str1));
        }
        public static string test(string text)
        {
            return string.Join(" ", text.Split(' ').Select(str => str.Length % 2 != 0 ? str : new String(str.Reverse().ToArray())));
        }
    }
}
هل كان المحتوى مفيد؟

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

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