Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace CharacterSequence
- {
- class Program
- {
- static void Main(string[] args)
- {
- string input = Console.ReadLine();
- for (int i = 0; i < input.Length; i++)
- {
- char letter = input[i];
- Console.WriteLine(letter);
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment