Collaboration Statements and ZIP

This commit is contained in:
2023-02-06 21:43:53 +00:00
parent c805ad30fe
commit 05c1238e4d
4 changed files with 27 additions and 0 deletions
+9
View File
@@ -1,3 +1,12 @@
/*
COS225 - HW2
06 FEB 2022
NICHOLAS PEASE
ALL WORK BELOW IS MY OWN
*/
public class Grove {
public String groveName;
public Tree[] trees = new Tree[8];
+10
View File
@@ -1,3 +1,13 @@
/*
COS225 - HW2
06 FEB 2022
NICHOLAS PEASE
ALL WORK BELOW IS MY OWN
*/
public class GroveTester {
public static void main(String[] args) {
Grove newGrove = new Grove("Grove One");
+8
View File
@@ -1,3 +1,11 @@
/*
COS225 - HW2
06 FEB 2022
NICHOLAS PEASE
ALL WORK BELOW IS MY OWN
*/
public class Tree {
public int idNum;
public int age;
Binary file not shown.