Перевернуть слова в строке - C#
Формулировка задачи:
Всем привет. Нужна помощь. Есть строка - Привет мир! , из нее нужно получить тевирП риМ!
Пытался использовать Split, но как то не получилось
Кто может помочь?
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { string s = "Привет мир!"; string []ss= s.Split(); char[] let = s.ToCharArray(); Array.Reverse(let); s = String.Concat(let); Console.Write(s); Console.ReadKey(); } } }
Решение задачи: «Перевернуть слова в строке»
textual
Листинг программы
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { string s = "Hello World!"; string[] ss = s.Split(' '); foreach(string d in ss) { char[] dd = d.ToCharArray(); Array.Reverse(dd); Console.Write(new string(dd) + " "); } Console.ReadKey(); } } }
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д