Advertisement
NikolaySpasovTriset

ASCII

Oct 14th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. using System;
  2. using System.Text;
  3. class PrintACSIITable
  4. {
  5. static void Main()
  6. {
  7. Console.OutputEncoding = Encoding.Unicode;
  8.  
  9. for (int i = 33; i <= 126; i++)
  10. {
  11. Console.Write((char)i);
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement