Está en la página 1de 1

Module Module1

Sub Main()
Dim n As Integer
Console.WriteLine("Ingrese con cuantos numeros quiere trabajar: ")
n = Console.ReadLine()
Dim x(n - 1), moda(n - 1), d As Integer
d = 0
Console.WriteLine("Ingrese los valores.")
For c = 0 To n - 1
Console.WriteLine("Ingrese el valor {0} :", c + 1)
x(c) = Console.ReadLine()
Next
For c = 0 To 9
If x(c) = x(c) Then
d = d + 1
End If
Next
Console.ReadLine()
End Sub
End Module

También podría gustarte