如果循环有问题

本文关键字:有问题 循环 如果 | 更新日期: 2023-09-27 18:02:36

我的问题是,我的程序在这里有麻烦在button21的函数之间循环,这取决于if语句的顺序,if函数工作,但另一个不会。在下面的代码中,我将其设置为button2,但我希望按钮1和2都与button21一起工作,如果他们被选中。然而,函数设置qw==1在这个程序中起作用,而不是qw==2那么,我的程序代码有什么问题呢?显示代码:

namespace Matematisk_indlæring
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        Random RND = new Random(Guid.NewGuid().GetHashCode());
        Random RND2 = new Random(Guid.NewGuid().GetHashCode());
        private void quitToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Close();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            button1.Hide(); 
            button2.Hide();
            button3.Hide();
            button4.Hide();
            button5.Hide();
            label1.Show();
            textBox1.Show();
            button21.Show();
            double qw = 1;
            textBox2.Text = qw.ToString();
            string q = "1+1";
            label1.Text = q;
            int qq = 1 + 1;
            textBox3.Text = qq.ToString();
        }

        private void button21_Click(object sender, EventArgs e)
        {
            double qqq = Convert.ToDouble(textBox1.Text);
            double qq = Convert.ToDouble(textBox3.Text);
            int qw = Convert.ToInt32(textBox2.Text);
            if (qw == 1)
            {
                if (qq == qqq)
                {
                    MessageBox.Show("succes");
                    int qws1;
                    int qws;
                    qws1 = RND2.Next(51, 100);

                    qws = RND.Next(0, 50);
                    qq = qws1 + qws;
                    textBox3.Text = qq.ToString();
                    string tese = qws.ToString();
                    string tese2 = qws1.ToString();
                    label1.Text = tese2 + "+" + tese;
                }
                    if (qw == 2)
                    {
                        if (qq == qqq)
                        {
                            MessageBox.Show("succes");
                            int qws1;
                            int qws;
                            qws1 = RND2.Next(51, 100);

                            qws = RND.Next(0, 50);
                            qq = qws1 - qws;
                            textBox3.Text = qq.ToString();
                            string tese = qws.ToString();
                            string tese2 = qws1.ToString();
                            label1.Text = tese2 + "-" + tese;
                        }


                }
            }
        }
        private void button2_Click(object sender, EventArgs e)
        {
            button1.Hide();
            button2.Hide();
            button3.Hide();
            button4.Hide();
            button5.Hide();
            label1.Show();
            textBox1.Show();
            button21.Show();
            double qw = 2;
            textBox2.Text = qw.ToString();
              string q = "1-1";
                label1.Text = q;
                int qq = 1 - 1;
                textBox3.Text = qq.ToString();
        }
    }
}

如果循环有问题

这里至少有一个逻辑缺陷。

button21_Click中:首先测试qw是否为1,然后测试它是否为2。但是没有代码改变qw。那么它是怎么突然从1变成2的呢?

这个方法中的代码基本上是:

int qw = Convert.ToInt32(textBox2.Text);
if (qw == 1)
{
    if (qq == qqq)
    {
        // code which does not modify qw
    }
    if (qw == 2)          // wrong placement of this if-statement!
    {
        // code which can never be called!
    }
}

因此,正如您所看到的,在此方法中控制永远无法到达if (qw == 2),因为您嵌套了错误的ifs。如果您修复缩进,您可以更容易地看到这一点。

亦称:Du burde bruke engelsk klassenavn, ikke dansk:-)