Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace Homework26
- {
- class Program
- {
- static void Main()
- {
- string userString = "Храбрость это не отсутствие страха, а умение с ним справляться, противостоять ему.";
- string[] userWords = userString.Split();
- for (int i = 0; i < userWords.Length; i++)
- {
- Console.WriteLine(userWords[i]);
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment