吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 623|回复: 3
收起左侧

[求助] 请问这个程序运行出的结果应该是什么?

[复制链接]
efujin 发表于 2021-12-27 09:45

textBox1.Text=IGIJM
textBox2.Text=HILFD
--------------------------------------------------------------------------
private void button1_Click(object sender, EventArgs e)
        {
            string ls_string = textBox1.Text.Trim() + textBox2.Text.Trim();
            
                        string ls_str = "";
            string m = "";
            int ls = 0;
            int li_e = 3;
            int li_d = 7;
            int li_n = 33;
            string re_str = "";
            long lul_temp = 0;
            long lul_x = 0;
            long lul_y = 0;
            int i = 0;
            long lul_x0 = 0;
            long lul_x1 = 0;

            for (ls = 0; ls < ls_string.Length; ls++)
            {
                m = ls_string.Substring(ls, 1);// mid(ls_string,ls,1)
                ls_str += Chr(Asc(m) - 20);
            }

            while (!string.IsNullOrEmpty(ls_str))
            {
                lul_temp = ConvertN.ToInt64(Left(ls_str, 2)); // integer(left(ls_str,2))
                if (lul_temp >= li_n)
                {
                    lul_temp = ConvertN.ToInt64(Left(ls_str, 1));
                    ls_str = Right(ls_str, 1);//  right(ls_str,ls_str.Length - 1)
                }
                else
                {
                    if (ls_str.Length >= 2)
                    {
                        ls_str = Right(ls_str, 2);
                    }
                    else
                    {
                        ls_str = "";
                    }
                }
                lul_y = 1;
                for (i = 0; i < li_e; i++)
                {
                    lul_y = lul_y * lul_temp;
                }
                lul_y = lul_y % 33;
                re_str = re_str + lul_y.ToString();
            }
            textBox3.Text = re_str;
        }

        public string Right(string str, int len)
        {
            if (str.Length >= len)
            {
                return str.Substring(len);
            }
            else
            {
                return str;
            }
        }

        public string Left(string str, int len)
        {
            if (str.Length >= len)
            {
                return str.Substring(0, len);
            }
            else
            {
                return str;
            }
        }

        public int Asc(string character)
        {
            if (character.Length == 1)
            {
                System.Text.ASCIIEncoding asciiEncoding = new System.Text.ASCIIEncoding();
                int intAsciiCode = (int)asciiEncoding.GetBytes(character)[0];
                return (intAsciiCode);
            }
            else
            {
                throw new Exception("Character is not valid.");
            }

        }

        public string Chr(int asciiCode)
        {
            if (asciiCode >= 0 && asciiCode <= 255)
            {
                System.Text.ASCIIEncoding asciiEncoding = new System.Text.ASCIIEncoding();
                byte[] byteArray = new byte[] { (byte)asciiCode };
                string strCharacter = asciiEncoding.GetString(byteArray);
                return (strCharacter);
            }
            else
            {
                throw new Exception("ASCII Code is not valid.");
            }
        }

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

 楼主| efujin 发表于 2021-12-27 18:59
说是powerbuilder程序
三木猿 发表于 2021-12-28 11:40
 楼主| efujin 发表于 2021-12-29 09:01
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 17:53

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表