Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. using System;
  2.  
  3. namespace homework_03_6
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. //сепаратор по умолчанию пробел
  10. string[] date = null;
  11. Console.WriteLine("Введите данные через пробел: ");
  12. date = Console.ReadLine().Split();
  13.  
  14. for (int i = 0; i < date.Length; i++)
  15. {
  16. Console.WriteLine(date[i]);
  17. }
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement