Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-winkler/6cbe88548938ea0caf53200ec59ff00e to your computer and use it in GitHub Desktop.
Save r-winkler/6cbe88548938ea0caf53200ec59ff00e to your computer and use it in GitHub Desktop.
public double totalAmount(List<Items> items) {
double total = 0.0;
for (item : items) {
total += item.getPrice();
}
return total;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment