• 生成简体汉字C#


    private string LocationCode(int ACode)
    {
       
    return Encoding.Default.GetString(
           
    new byte[] { (byte)(ACode / 100 + 160), (byte)(ACode % 100 + 160) });
    }

    private void button1_Click(object sender, EventArgs e)
    {
       
    for (int i = 0; i < 1000; i++)
        {
           
    string l = LocationCode(1601 + i);
           
    if (l != "?") Console.Write(l);
        }
    }

    办法2,

        private   void   button10_Click(object   sender,   EventArgs   e)
                    {
                            string   l="";
                            string   strtxt   =   "";
                                    for   (int   i   =   0;   i   <   1000;   i++)
                                    {
                                              l   =   LocationCode(1601   +   i);
                                              if   (l   !=   "?")   strtxt   =   strtxt   +   l;
                                    }
                                    label5.Text   =   strtxt;
                    }
                    private   string   LocationCode(int   ACode)
                    {
                            return   Encoding.Default.GetString(
                                    new   byte[]   {   (byte)(ACode   /   100   +   160),   (byte)(ACode   %   100   +   160)   });
                    }
     
  • 相关阅读:
    C语言 · 选择排序
    C语言 · 生物芯片
    C语言 · 猜灯谜
    C语言 · x的x次幂结果为10
    C语言 · LOG大侠
    C语言 · 成绩查询系统
    C语言 · C++中map的用法详解
    C语言 · 方程的解
    斯坦福大学公开课:监督学习应用,梯度下降
    斯坦福大学公开课:机器学习的动机与应用
  • 原文地址:https://www.cnblogs.com/whitetiger/p/1081484.html
Copyright © 2020-2023  润新知