Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace CSLight
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- string text = "Не спрашивай, что нужно миру. Спроси себя, что делает тебя живым. Затем пойди и займись этим. Миру нужны живые люди.";
- string[] lines = text.Split(' ','.');
- Console.WriteLine("Ваша строка: \n");
- foreach (string line in lines)
- {
- Console.WriteLine("| " + line);
- }
- Console.WriteLine("\n");
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement