如何从列表框中计算字符串列表的数量并相乘

本文关键字:列表 计算 字符串 | 更新日期: 2023-09-27 18:01:02

我在这里写了一段代码。它循环通过。我使用了一个if语句来检查Fizz是否在ListBox中打印了三次。如果有的话,我想要一个简单的3乘运算。然后,打印出TextBox中的值。

所以,菲兹打印三次,它会乘以我的3,等于9。如果应该这样做的话,我该如何将Listbox中的字符串转换为int,以便它可以计算"3 x 3=9"。

string Output = "Fizz";
for (int a = 1; a <= 10; a++)
{
    if (a == 3)
    {
        for (int b = 1; b <= 3; b++)
        {
            listBox4.Items.Add(Output);
            int multiplyBy = 3; 
            //int numVal = Int32.Parse("3");
            listBox4.Items.Count.ToString();  
        }
        textBox1.Text = listBox4.Items.Count.ToString();            
    }
}

如果有人能帮我,谢谢。

如何从列表框中计算字符串列表的数量并相乘

使用Int32.Parse或Convert.ToInt32

请参阅MSDNhttps://msdn.microsoft.com/en-us/library/bb397679.aspx

和MSDNhttps://msdn.microsoft.com/en-us/library/system.int32.parse(v=vs.110(.aspx

不确定你想要什么,但我会根据你写的内容试一试:

string output = "Fizz";
// Loop from 1 to 10 for no reason
for (int a = 1; a <= 10; a++)
{
    // Add "Fizz" item to listbox 3 times if 'a' equals 3
    if (a == 3)
    {
        for (int b = 1; b <= 3; b++)
        {
            listBox1.Items.Add(output);
        }
        // Multiply number of items in listBox with 3 for no reason and display it in textbox
        textBox1.Text = (listBox1.Items.Count * 3).ToString();
    }
}