Jump to content

C# Dizilerde İsimlere Rastgele Sayı Atama


lamont
 Share

Recommended Posts

40 kişilik sınıf listesindeki isimlere rastgele sayı atamak istiyorum diye örnek buldum ama nedemek istedigini tam olarak anlamadım soruyu anlamadım bende aşagıdaki kodu oluşturdum ama ne kadar dogru bilmiyorum isimlere rasgele sayı atayacak ama atandıktan sonraki mantıgı çözemedim aşagıdaki kod buna uygunmu 

 private void button1_Click(object sender, EventArgs e)
        {
            string [] sinif = { "Ali", "Ayşe", "Nermin", "Gamze", "Erhan", "Süleyman", "Cansu", "Elif" };
            Random r = new Random();
            listBox1.Items.Clear();
            for (int i = 0; i  < sinif.Length; i++)
               
            {

                listBox1.Items.Add( sinif[ r.Next(7)]);
                
            }

           
            }
        }
    }
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...