You have done
for (int b = 0; b<3; i++)
instead of the correct
for (int b = 0; b<3; b++)
This should help your loop terminate.
0
solved How to output random letters in java and get the total, high score and lowest score?
You have done
for (int b = 0; b<3; i++)
instead of the correct
for (int b = 0; b<3; b++)
This should help your loop terminate.
0
solved How to output random letters in java and get the total, high score and lowest score?