Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Find online more information about ASCII (American Standard Code for Information Interchange)
- //and write a program that prints the entire ASCII table of characters on the console.
- using System;
- using System.Collections.Generic;
- using System.Text;
- class Program
- {
- static void Main()
- {
- Console.OutputEncoding = Encoding.Unicode;
- for (int i = 0; i < 257; i++)
- {
- Console.WriteLine((char)i);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment