I have an int array:
int[] BankClientNumber = new int[10];
I want the user to input an id number...
findidd = JOptionPane.showInputDialog ("\nEnter ID number:\n\n");
findid = Integer.parseInt(findidd);
...and have the program look through the data of the array, match the id number and print the other details of the client.
How do I compare the variable's data with that of the array?
Any suggestions will be much appreciated.
List<Integer>instead ofint[]. – Bohemian Aug 27 '11 at 13:53