Facebook
From beste, 1 Week ago, written in C#.
Embed
Download Paste or View Raw
Hits: 123
  1. using System;
  2.  
  3. class Program
  4. {
  5.     static void Main()
  6.     {
  7.         Console.WriteLine(reverseWords("The weather is so sunny nowadays"));
  8.         Console.WriteLine(reverseWords("Life is so beautiful"));
  9.     }
  10.  
  11.     static string reverseWords(string s)
  12.     {
  13.         string[] words = s.Split(' ');
  14.         Array.Reverse(words);
  15.         return string.Join(" ", words);
  16.     }
  17. }