Created
August 28, 2019 12:35
-
-
Save shelajev/54a5b4c95e52fc35cb4e844e6e7123bb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
static double computeArea(Shape[] all) { | |
double sum = 0; | |
for (Shape shape : all) { | |
sum += shape.area(); | |
} | |
return sum; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment