《21天学通C#》数字代表的字符

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 数字和字符一一对应
{
class Program
{
static void Main(string[] args)
{
int ctr;
char ch;
Console.WriteLine(" Number Value ");
for (ctr = 60; ctr <= 95; ctr = ctr + 1)
{
ch = (char)ctr;
Console.WriteLine("{0} is {1}", ctr, ch);
}
Console.WriteLine("按任意键退出");
Console.ReadKey();
}
}
}

原文地址:https://www.cnblogs.com/nnty/p/9928898.html