Advertisement
AlexeySudakov

Untitled

Jul 17th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. //1.3.9.2
  2. using System;
  3.  
  4. namespace homework
  5. {
  6. class Program
  7. {
  8. public static void Main(string[] args)
  9. {
  10. string newArr = Console.ReadLine();
  11. Char delimiter = ' ';
  12. string[] words = newArr.Split(delimiter);
  13. foreach (string word in words)
  14. Console.WriteLine(word);
  15. Console.ReadKey();
  16. }
  17.  
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement