yap amk

 avatar
unknown
csharp
a year ago
502 B
9
Indexable
string harfler = "qwertyuıopğüasdfghjklşizxcvbnmöç";
string kelime = "";
for (int i = 0; i < 5; i++)
{
    Random rand = new();
    int uzunluk = rand.Next(2, 16);
    if(uzunluk % 2 == 0)
    {
        for(int j = 0; j < uzunluk; j++)
        {
            Random sayi = new();
            int sayi1 = rand.Next(0, harfler.Length);
            for(int a = 0; a<16; a++)
            {
                kelime += harfler[sayi1];

            }
            
        }

    }

}
Editor is loading...
Leave a Comment