Random rastgele = new Random();
for(int i=0; i<=100; i++)
{
label1.Text = rastgele.Next(0,100);
Thread.Sleep(1000);
}