Advertisement
fbinnzhivko

Print Part Of ASCII Table

May 19th, 2016
470
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. using System;
  2. class Program
  3. {
  4.     static void Main()
  5.     {
  6.         int first = int.Parse(Console.ReadLine());
  7.         int secound = int.Parse(Console.ReadLine());
  8.  
  9.         for (int i = first; i <= secound; i++)
  10.         {
  11.             Console.Write("{0} ", (char)i);
  12.         }
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement