Yachkov

character sequence

Jan 31st, 2021
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.63 KB | None | 0 0
  1. using System;
  2. using System.ComponentModel;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.Design;
  5. using System.Globalization;
  6. using System.Net.Http.Headers;
  7. using System.Reflection;
  8. using System.Runtime.ConstrainedExecution;
  9. using System.Security.Cryptography;
  10.  
  11. namespace SomeExcercises
  12. {
  13.     class Program
  14.     {
  15.         static void Main(string[] args)
  16.         {
  17.             string input = Console.ReadLine();
  18.  
  19.             for (int i = 0; i < input.Length; i++)
  20.             {
  21.                 char letter = input[i];
  22.                 Console.WriteLine(letter);
  23.             }
  24.         }
  25.     }
  26. }
  27.  
  28.  
  29.  
  30.  
Advertisement
Add Comment
Please, Sign In to add comment