-4

知道组合框中是否存在使显示成员具有最大价值成员的功能吗?

先感谢您。

4

1 回答 1

1

由于您没有展示任何努力或代码示例,因此您可以遵循这样的结构;

int biggest = comboBox1.Items[0];
for (int i = 1; i < comboBox1.Items.Length; i++)
{
    biggest = GetBigger(comboBox1.Items[i], biggest);
}

comboBox1.SelectedItem.Value = biggest;


static int GetBigger(int a, int b)
{
    if (a < b)
        return b;
    return a;
}
于 2013-07-15T07:24:07.233 回答