using System.Collections.Generic;
public static void Main()
List<Listita> L = new List<Listita>();
L.Add(new Listita("Uno", (float)10.5));
L.Add(new Listita("Uno", 20));
L.Add(new Listita("Uno", 14));
L.Add(new Listita("Uno", 13));
L.Add(new Listita("Uno", 100));
public static void Función(List<Listita> L)
for(int x = 0; x < L.Count; x++)
Console.WriteLine("Probabilidad: 10%");
public string nombre { get; set; }
public float importe { get; set; }
public Listita(string n, float i)