Here's the problem:
I have an array. Let's just say the the array is
String[] StudName = new String[5];
I wanna set 5 value to the StudName array FROM console..
FYI, i already know how to input data from the console through BufferedReader..
Right?
What i want to ask are :
-how to SET that value into the array(FROM CONSOLE)?
-how to STORE that value in the array, so that, when I input another value from
console
the previous value won't be overrided?