Advertisement
Ziomnexpl

wypisywanie znaków ascii C#

Nov 20th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. using System;
  2.  
  3. namespace wypisywanie_znakow_ascii
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             for (int i = 1; i < 256; i++)
  10.             {
  11.                 char a = (char)i;
  12.                 Console.Write(a);
  13.             }
  14.             Console.ReadKey();
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement