201106-10 c#课程表查询编程 HOT 题目要求:使用键盘输入0-6任意一个字符,显示相应的课程。 代码如下: using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; .... Read More >
201106-10 C#“字符转成ASCII码,ASCII码转成字符”代码 HOT 1.字符转换成对应ASCII码: public static int Asc(string character) { if (character.Length == 1) { System.Text.ASCIIEncoding asciiEncoding = new System.Text.ASCIIEncoding(); int intAsciiCode = (int)ascii.... Read More >