knikolov98

Untitled

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