Logo 
Search:

Java Answers

Ask Question   UnAnswered
Home » Forum » Java       RSS Feeds
  Question Asked By: Vernon Day   on Dec 01 In Java Category.

  
Question Answered By: Katrina Edwards   on Dec 01

For multiple arrays with different lengths use:
double[][] rain = new double[12][];
rain[0] = double[31];
rain[1] = double[28];
.
.
.

To read the data  from a file  try using DataInputStream or FileReader
or maybe StreamTokenizer, depending on the data format inside of the
file.

Share: 

 

This Question has 3 more answer(s). View Complete Question Thread

 
Didn't find what you were looking for? Find more on Array help needed please Or get search suggestion and latest updates.


Tagged: