Advertisement
levamurashev2002

Untitled

Jun 26th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApp5
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. string word;
  14. Console.WriteLine("Введите текст");
  15. string ph = Console.ReadLine();
  16. string[] words = ph.Split(' ');
  17. Console.WriteLine();
  18. for (int i = 0; i < words.Length; i++)
  19. {
  20. word = words[i];
  21. Console.WriteLine(word);
  22. Console.WriteLine();
  23. }
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement