Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp26
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- string text = "Привет меня зовуд Федя";
- string[] words = text.Split(' ');
- for (int i = 0; i < words.Length; i++)
- {
- Console.WriteLine(words[i]);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment