I need to write a program where the program would generate random letter and i would need to store this random character into an array

        char[] arrayRandom = new char[10];


        for (int i = 0; i < 8; i++) {
            randomNumLet = (generator.nextInt(20) + 1);
            System.out.print(arrayRandomLetter[randomNumLet] + " ");
            arrayRandomLetter[randomNumLet] = arrayRandom[i];
        }

is there anything wrong with my code? because when i run this and printed the array i get boxes for all the values in the array and there are some letter that this line of code cannot print

            System.out.print(arrayRandomLetter[randomNumLet] + " ");

Thanks

link|improve this question
feedback

3 Answers

You're assigning an element of arrayRandomLetter a value from arrayRandom. As you never initialize arrayRandom, its values are all 0. 0 is not the value of a printable character, hence the boxes.

An easy way to pick a random character is like this:

String chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
char randomChar = chars.charAt(random.nextInt(chars.length()));
link|improve this answer
so, how do i initialize arrayRandom ? shouldn't it be an empty array since i'm going to store values inside? – Jann Jun 14 '10 at 5:04
I don't know, are you going to store values inside? You've certainly not shown an intention to do that based on your code (hint: where in your code does arrayRandom appear on the LEFT side of an assignment?) – Mark Peters Jun 14 '10 at 5:17
oh i get what you are saying already if i want to add a value inside the array i should only put on the left hand side and not on the right hand side? thanks a lot =) – Jann Jun 14 '10 at 5:22
feedback

You are trying to print arrayRandomLetter before it is assigned.

link|improve this answer
1  
That too, though switching the lines wouldn't make a difference :-) – Mark Peters Jun 14 '10 at 4:46
1  
@Mark - the output would be different (8 spaces). It is not correct, but it is different. – Stephen C Jun 14 '10 at 4:54
1  
i has already assign arrayRandomletter by putting in letters inside the array and sorry the array should be 8 and not 10 – Jann Jun 14 '10 at 5:07
1  
@Stephen C: No. arrayRandomLetter[randomNumLet] is 0 before the line arrayRandomLetter[randomNumLet] = arrayRandom[i], and is 0 after. So whether the println occurs before or after that line makes no difference given this specific example. Actually, that assumes that those elements have not been previously assigned a value. And if they had, then it's arguably more correct, given this code, to leave the println where it is :-). – Mark Peters Jun 14 '10 at 5:19
1  
@Mark - didn't you notice the ''` + " "`'' in the println ?????? – Stephen C Jun 14 '10 at 5:31
show 1 more comment
feedback

I'm not going to give you the answer, but I will give you a hint:

(char)('A' + 1) is 'B'

@fastcodejava's answer explains why you are seeing "boxes" -- rendering the ASCII NUL character.

@Mark Peters is also correct, but that's not the simplest solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.