Advertisement
Qrist

24

Mar 30th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Unknown
  4. {
  5.     class Program
  6.     {
  7.  
  8.         static void Main(string[] args)
  9.         {
  10.             int start = int.Parse(Console.ReadLine());
  11.             int last = int.Parse(Console.ReadLine());
  12.             for (int i = start; i <= last; i++)
  13.             {
  14.                 Console.Write((char)i + " ");
  15.             }
  16.             Console.WriteLine();                    
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement