lovelyvook

Unit_24

Jun 17th, 2024
919
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.40 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Ijunior
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string sentence = "live long and prosper";
  10.             char symbol = ' ';
  11.  
  12.             string[] words = sentence.Split(symbol);
  13.  
  14.             foreach (string word in words)
  15.             {
  16.                 Console.WriteLine(word);
  17.             }
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment