knikolov98

Untitled

Sep 25th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. using System;
  2.  
  3. namespace stringSequence
  4. {
  5.     class Program
  6. {
  7.     static void Main(string[] args)
  8.     {
  9.             string input = Console.ReadLine();
  10.             int length = input.Length;
  11.  
  12.             for (int i = 0; i < length ; i++)
  13.             {
  14.                 char letter = input[i];
  15.                 Console.WriteLine(letter);
  16.             }
  17.     }
  18. }
  19. }
Add Comment
Please, Sign In to add comment