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 sentence = "Под лежачий камень и вода не течет";
- string [] words = sentence.Split();
- for (int i = 0; i < words.Length; i++)
- {
- Console.WriteLine(words[i]);
- }
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement