Advertisement
dragonbs

Print Part Of ASCII Table

Feb 2nd, 2023
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.16 KB | None | 0 0
  1. int start = int.Parse(Console.ReadLine());
  2. int end = int.Parse(Console.ReadLine());
  3.  
  4. for (int i = start; i <= end; i++)
  5. {
  6.     Console.Write($"{(char)i} ");
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement