TextBox没有计算正确的方法

时间:2015-08-28 11:39:11

标签: c# textbox calculator

我有一个链接到数据库的Windows应用程序。它应该在textBoxes的文本更改时从textBoxes计算一些值。我写道,它工作正常,所有这些,除了一个。如果textBox2中的文本小于20,则计算正确,如果它在上面,则它不再正确计算,我甚至可以知道为什么会这样。到目前为止,我一直试图解决它,但是没有。有谁能得到它?

private void textBox1_TextChanged_1(object sender, EventArgs e)
        {
            int total = textBox1.Text.Length == 0 ? 0 : int.Parse(textBox1.Text);
            textBox2.Text = total.ToString();
            textBox7.Text = (total * 8).ToString();
        }

        private void textBox7_TextChanged_1(object sender, EventArgs e)
        {
            int ore_l = textBox7.Text == "" ? 0 : int.Parse(textBox7.Text);
            int ore_n = textBox8.Text == "" ? 0 : int.Parse(textBox8.Text);
            int t = ((ore_l - ore_n) / 8);
            textBox2.Text = t.ToString();
        }

        private void textBox8_TextChanged_1(object sender, EventArgs e)
        {
            //it is correct
            int ore_l = textBox7.Text == "" ? 0 : int.Parse(textBox7.Text);
            int ore_n = textBox8.Text == "" ? 0 : int.Parse(textBox8.Text);
            int t = ((ore_l - ore_n) / 8);
            textBox2.Text = t.ToString();

            //it isn't correct anymore
            int ac = label14.Text.Trim() == "" ? 0 : int.Parse(label14.Text);
            int zi_l = textBox1.Text.Trim() == "" ? 0 : int.Parse(textBox1.Text);
            int zi_luc = textBox2.Text.Trim() == "" ? 0 : int.Parse(textBox2.Text);
            int total = ac / zi_l * zi_luc;
            textBox6.Text = total.ToString();
        }

        private void textBox6_TextChanged_1(object sender, EventArgs e)
        {
            int s = textBox4.Text == "" ? 0 : int.Parse(textBox4.Text);
            int ac = label14.Text == "" ? 0 : int.Parse(label14.Text);
            textBox5.Text = (ac + s).ToString();
        }

        private void textBox4_TextChanged(object sender, EventArgs e)
        {
            int b = label21.Text == "" ? 0 : int.Parse(label21.Text);
            int sa = textBox1.Text == "" ? 0 : int.Parse(textBox1.Text);
            int t = (b / sa + (75 / 100 * b / sa));
            textBox10.Text = t.ToString();


            int s = textBox4.Text == "" ? 0 : int.Parse(textBox4.Text);
            int ac = label14.Text == "" ? 0 : int.Parse(label14.Text);
            textBox5.Text = (ac + s).ToString();
        }

使用以下值测试:ac = 1400; zi_l = 23; zi_luc = 23.所以:1400/23 * 23。它应该是1400,因为它是int,实际上它显示为1380。

P.S:由于文本的变化而没有发生,并且错误地得到了价值。我单独尝试了一个按钮和方法onClick,这是相同的结果。谢谢!

1 个答案:

答案 0 :(得分:2)

当你将1400除以23时,得到60.8xxxxxxxxxxx。

因为1400是一个整数,所以小数点后面的数字会被切掉。然后计算为60 * 23 = 1380。

如果您想要更好的计算,则需要使用浮点数,然后将Math.RoundMidPointRoundingAwayFromZero一起使用。