This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes Multidimensional arrays Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Multidimensional arrays" Watch "Multidimensional arrays" New topic
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
    
    4
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.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Multidimensional arrays
 
Similar Threads
this problem baffles me
Scanner Class Doubt
WHY DONT APPLETS EXECUTE???
Printf and multi-dimensional array
string.equals("");