1
0
oop-1-labs/Introduction/Introduction.CharsAndStrings.Step2/Program.cs

15 lines
242 B
C#

using System;
namespace Introduction.CharsAndStrings.Step2
{
class Program
{
static void Main(string[] args)
{
for (char ch = 'a'; ch <= 'z'; ch++)
Console.WriteLine("{0} - {1} ", ch, (int)ch);
Console.ReadKey();
}
}
}