+ 2
How can I make a random letter sequence maker?
4 Réponses
+ 15
Here is an example in C++
[https://code.sololearn.com/ciN0lkfmCRhS]
+ 2
Like a password generator?
+ 1
So you could take a string like "abcdefghijklmnopqrstuvwxyz", then create a Random Object and call it's function
nextInt(INHERECOMESTHESTRINGLENGTH);
Then use theString.charAt (RANDOMNUMBER) to get random chars.
0
Without symbols