Click here to Skip to main content
15,879,348 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want store some random numbers into an array and newly generated random number checked with that array before insertion to stop repeeat again...........,
give some suggetions.............,


Java
for(i=0;i<s;i++)>
    {
        if(ar[i]!=randomNumber)
        {
        str=Integer.toString(randomNumber);
        ta.setText(str);
        ar[i]=randomNumber;
        break;
        }
        else
        {
        JOptionPane.showMessageDialog(null,+count+"Already appeared"+randomNumber);
        count--;
        break;
        }


[torsten]added code formating[/torsten]
Posted
Updated 1-Jan-13 6:50am
v3

Here are some suggestions:
 
Share this answer
 
- why Integer.toString(String) ?
You could use a simple String Array.
The TextArea will take the int value anyway (if really needed add + "" to it to make it a String)

- please name your variables better. You will have much more control when you use better namings, like "iRandom", "oArray", "oTextArea".

Please be specific with your question. we do not provide code for homework kind of problems.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900