Arşiv

‘sayısal loto’ Etiketi için arşiv

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SayisalLoto { class Program { static void Main(string[] args) { Random rnd = new Random(); int[] dizi=new int[6]; int uretilen; int bulunduguIndeks; int indeks = 0; while (indeks<dizi.Length) { uretilen=rnd.Next()%49+1; bulunduguIndeks = Array.IndexOf(dizi, uretilen); if (bulunduguIndeks == -1)//üretilen değer diziye daha önce eklenmemiş { dizi[indeks] = [...]

104 defa okundu | Henüz yorum yok.
Ağu 12th, 2010 | Filed under C# ve Visual Studio