VB.NET中如何删除listbox中的最大值和最小值?
3个回答
展开全部
ListBox1.Items.Remove(63)
追问
是取随机数后,有个按钮可以删除最大最小值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
listbox中是什么?整数?实数?字符串?
追答
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim max As Integer = 0
Dim min As Integer = 0
For i = 0 To ListBox1.Items.Count - 1
If Val(ListBox1.Items(max)) < Val(ListBox1.Items(i)) Then max = i
If Val(ListBox1.Items(min)) > Val(ListBox1.Items(i)) Then min = i
Next
If min > max Then
ListBox1.Items.RemoveAt(min)
ListBox1.Items.RemoveAt(max)
Else
ListBox1.Items.RemoveAt(max)
ListBox1.Items.RemoveAt(min)
End If
End Sub
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询