Buenas tardes :
tengo el siguiente ejercicio:
Calcular el número de elementos negativos, cero y positivos de un vector dado de 20 elementos.
- Habra alguna manera de poder reducir el siguiente codigo que he realizado para solucionar el problema que me plantean :
Private Sub boton_Click(sender As Object, e As EventArgs) Handles boton.Click
Dim number(0 To 4), vnumber, i, j As Integer
Dim cont1 As Integer = 0
Dim cont2 As Integer = 0
Dim cont3 As Integer = 0
For i = 0 To number.Length - 1
vnumber = InputBox("Ingrese Numero")
number(i) = vnumber
Next
For j = 0 To number.Length - 1
If number(j) > 0 Then
cont1 = cont1 + 1
txtpositivos.Text = cont1
txtceros.Text = cont2
txtnegativos.Text = cont3
ElseIf number(j) = 0 Then
cont2 = cont2 + 1
txtpositivos.Text = cont1
txtceros.Text = cont2
txtnegativos.Text = cont3
ElseIf number(j) < 0 Then
cont3 = cont3 + 1
txtpositivos.Text = cont1
txtceros.Text = cont2
txtnegativos.Text = cont3
End If
Next
End Sub
Esto lo hago con el fin de poder optimizar mi logico viendo que otras alternativas tiene otras personas.
Gracias por lo comentarios.
Saludos