+ 1
How do you create a java program of a password that will have 7 character's(digits and letters no symbols)
3 Answers
+ 1
yes
+ 1
you can use the ascii codes of characters. inside a for loop generate a number from 0 to 255. lets call this int z. you can convert this to a single char using Character.toString((char) z). do this for 7 loops and add the result to a string
0
do you want the program to generate 7 characters long passwords?