Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _27_ManipulateStrings
  4. {
  5. public class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. const string alphabet = "abcdefghijklmnopqrstuvwxyz";
  10.  
  11. foreach (var letter in alphabet)
  12. {
  13. Console.WriteLine(letter);
  14. }
  15.  
  16. Console.ReadKey();
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement