2024-04-27 00:08:14
有没有简单一点的代码最好有点中文的简单一点的最好了谢谢
留下QQ 我加你 收你做徒弟吧
私信了
Copy
2024-04-27 03:46:19
我要的是c#的不是c的
2024-04-27 00:24:09
有没有简单一点的代码最好有点中文的简单一点的最好了谢谢
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入小写字母 :");
string lower = Console.ReadLine();
Console.WriteLine("对应大写 : " + lower.ToUpper());
Console.WriteLine("对应ASCII: " + (int)System.Text.Encoding.ASCII.GetBytes(lower)[0]);
}
}
}