Skip to content

Instantly share code, notes, and snippets.

View kiranandcode's full-sized avatar
🏳️‍⚧️
back in business

Kiran Gopinathan kiranandcode

🏳️‍⚧️
back in business
View GitHub Profile
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;