1

我必须用钱数数,我创建了一些文本框,用户可以在其中输入他有多少 1 欧元硬币。(所以对于 2 欧元、5 欧元等)现在我想计算总计,但如果文本框为空,则不能计算它。我尝试了一些方法,但它不起作用,因为程序会自动开始计算每个输入。

为了简短起见,我想在计算过程中跳过空文本框。

现在我有这个:

Int32 aa = Int32.Parse(textBox1.Text); // 5 c
Int32 ba = Int32.Parse(textBox2.Text); // 10 c
Int32 ca = Int32.Parse(textBox3.Text); // 20 c
Int32 da = Int32.Parse(textBox4.Text); // 50 c
Int32 ea = Int32.Parse(textBox5.Text); // 1 e
Int32 fa = Int32.Parse(textBox6.Text); // 2 e
Int32 ga = Int32.Parse(textBox7.Text); // 5 e
Int32 ha = Int32.Parse(textBox8.Text); // 10 e
Int32 ia = Int32.Parse(textBox9.Text); // 20 e
Int32 ja = Int32.Parse(textBox10.Text); // 50 e
Int32 ka = Int32.Parse(textBox11.Text); // 100 e
Int32 total = ((aa * 5) + (ba * 10) + (ca * 20) + (da * 50) + (ea * 100) + (fa * 200) + (ga * 500) + (ha * 1000) + (ia * 2000) + (ja * 5000) + (ka * 100000)) / 100;
richTextBox1.AppendText("\r\nTotaal: € " + total.ToString());

但这不起作用,因为有时会有空盒子;)

我希望你能给我一个简单的解决方案。

4

4 回答 4

2

我认为你应该使用这个方法:

    var list = new List<Tuple<TextBox, decimal>>(){
            Tuple.Create(textBox1, 0.05m),
            Tuple.Create(textBox2, 0.1m),
            Tuple.Create(textBox3, 0.2m),
            Tuple.Create(textBox4, 0.5m),
            Tuple.Create(textBox5, 1m),
            Tuple.Create(textBox6, 2m),
            Tuple.Create(textBox7, 5m),
            Tuple.Create(textBox8, 10m),
            Tuple.Create(textBox9, 20m),
            Tuple.Create(textBox10, 50m),
            Tuple.Create(textBox11, 100m),
        };
    decimal sum = list.Sum(tuple =>{ 
        int a = 0;
        int.TryParse(tuple.Item1.Text, out a);
        return a * tuple.Item2;
    });
于 2013-05-14T15:27:16.143 回答
2

我会更改代码,以便您利用集合而不是单独处理这么多类似的变量。

创建一个字典,将每个货币值映射到代表它的文本框:

var mapping = new Dictionary<decimal, TextBox>()
{
    {.05, textBox1},
    {.10, textBox2},
    {.20, textBox3},
    {.50, textBox4},
    {1, textBox5},
    {2, textBox6},
    //...
};

然后你可以得到那些值Where文本是一个有效的整数和Sum它们。

int n;
decimal total = mapping.Where(pair => int.TryParse(pair.Value.Text, out n))
    .Sum(pair => pair.Key * int.Parse(pair.Value.Text));
于 2013-05-14T15:33:53.730 回答
1

如果是非数字数据(包括空字符串),您可以使用int.TryParsewhich 将加载您的变量0

int a = 0;
int.TryParse(textBox1.Text, out a);
于 2013-05-14T15:07:51.720 回答
1

您可以使用Int32.TryParse,但您可以将其与扩展方法结合使用来清理您的代码:

public static Int32 NumberOrZero(this string input)
{
    Int32 output = 0;

    if (!string.IsNullOrWhiteSpace(input))
    {
        Int32.TryParse(input, out output);
    }

    return output;
}

然后你可以这样做:

Int32 aa = textBox1.Text.NumberOrZero(); // 5 c
Int32 ba = textBox2.Text.NumberOrZero(); // 10 c
Int32 ca = textBox3.Text.NumberOrZero(); // 20 c
Int32 da = textBox4.Text.NumberOrZero(); // 50 c
Int32 ea = textBox5.Text.NumberOrZero(); // 1 e
Int32 fa = textBox6.Text.NumberOrZero(); // 2 e
Int32 ga = textBox7.Text.NumberOrZero(); // 5 e
Int32 ha = textBox8.Text.NumberOrZero(); // 10 e
Int32 ia = textBox9.Text.NumberOrZero(); // 20 e
Int32 ja = textBox10.Text.NumberOrZero(); // 50 e
Int32 ka = textBox11.Text.NumberOrZero(); // 100 e
于 2013-05-14T15:15:04.917 回答