Otra duda con combinatorias de numeros :(

Iniciado por luis456, 9 Marzo 2020, 18:29 PM

0 Miembros y 3 Visitantes están viendo este tema.

luis456

Cita de: **Aincrad** en 11 Marzo 2020, 15:24 PM
Let? (output As let ) , bueno , correccion :

Código (vbnet) [Seleccionar]
  Dim input As Integer() = {1, 2, 3, 5, 7}

        Dim output As New List(Of Integer)

        For i As Integer = 0 To input.Length - 1
            For j As Integer = 0 To input.Length - 1
                If input(i) <> input(j) AndAlso input(i) < 5 Then
                    Dim result As Integer = (input(i) * 10 + input(j))
                    output.Add(result)
                End If
            Next j
        Next i



fUNCIONA BIEN
Código (vbnet) [Seleccionar]
'****************combinaciones FUNCIONA DE p**a MADRE
    Private Sub Button10_Click(sender As Object, e As EventArgs) Handles Button10.Click
        Dim input As Integer() = {1, 2, 3, 5, 7}

        Dim output As New List(Of Integer)

        For i As Integer = 0 To input.Length - 1
            For j As Integer = 0 To input.Length - 1
                If input(i) <> input(j) AndAlso input(i) < 5 Then
                    Dim result As Integer = (input(i) * 10 + input(j))
                    output.Add(result)
                End If
            Next j
        Next i

        Me.ListBox8.Items.AddRange(output.Cast(Of Object).ToArray)


Gracias a todos  ;-) ;-)

luis


Que tu sabiduria no sea motivo de Humillacion para los demas