| Author |
Multidimensional arrays
|
Christian Bronson
Greenhorn
Joined: Nov 25, 2008
Posts: 1
|
|
Hi guys, Im here for some help. I have assignment that Im working on where I have to read in a file that looks like this: I have to make an array that is [rows]x[leftSeats + rightSeats], then split the remaining info by split("-") and assign the seats. Here is what I have so far: I am reading in the rows and left and right seat and turning them into integers, however, using the if statements, I cant make the array[][]. Any suggestions? Thanks a lot
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32654
|
|
Welcome to JavaRanch If I had that (it is quite awkward for a beginners' assignment) I would put the names and numbers of seats into a Map, using <String, Integer> as its types, so you get rows |-> 7 leftSeats |-> 1 rightSeats |-> 2 Then you can do arithmetic on the different numbers and get a something[7][3] array. By the way: There is no such things as a multi-dimensional array in Java, only arrays of arrays. Test the first character of each String read, and look in the Character class for methods which tell you whether it begins with a row number. **************************************************************************** Other people are bound to have different ideas.
|
 |
 |
|
|
subject: Multidimensional arrays
|
|
|