Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. create a console application that loops through all the characters in the ascii character set and writes them to screen.
  2. the output should be as follows :
  3.  
  4. 1: The ASCII Char 1 is X
  5. 2: The ASCII Char 2 is X
  6. ....
  7. 255: The ASCII Char 255 is X
  8.  
  9.  
  10.  
  11. hints:
  12. you will need a loop
  13. console.writeline
  14. the function Convert.ToChar(int) will be useful.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement