archangelmihail

ADCII Table

Nov 17th, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. using System;
  2. class TableOfASCIIChars
  3. {
  4. static void Main()
  5. {
  6. Console.WriteLine("The ASCII table consists of the following symbols:");
  7. for (int i = 0; i <= 127; i++) // ASCII has only 127 symbols
  8. {
  9. Console.Write("{0}\t",(char) i);
  10. }
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment