🏳️⚧️
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class DataSet { | |
String dateStrings[] = new String[350]; | |
Float precipitationValues[] = new Float[350]; | |
DataSet() { | |
dateStrings[0] = "21/03/1948"; | |
precipitationValues[0] = 2.04; | |
dateStrings[1] = "26/09/1948"; | |
precipitationValues[1] = 1.51; | |
dateStrings[2] = "16/02/1949"; | |
precipitationValues[2] = 1.83; |
NewerOlder