Hello,
I have a question about using an array.. here is the problem..
There is 2 kind of same data type(int) with seperate array(but with seperate function), how can i stored both data in the same array.. should i use 2 dimensional array? or jagged array? and what is the size of the array? example: 20 data to be keyin.. TQ
Loading
Mike GoldPosted Oct 14, 2007, 2:04 AM
Your question is not quite clear, but if you want to store two arrays in the same array, you can use jagged, rectangular or an ArrayList containing a list of Arrays. It all depends what you need to do.