Skip to content

Instantly share code, notes, and snippets.

@astamatto
Last active October 18, 2016 13:38
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 astamatto/2365d62ce5e478e4b3aaf5ea81f57bcf to your computer and use it in GitHub Desktop.
Save astamatto/2365d62ce5e478e4b3aaf5ea81f57bcf to your computer and use it in GitHub Desktop.
for (i = 0; i < emprestimos.length; i++) {
if (emprestimos[i] != null && associado.getCodigo() == emprestimos[i].getAssociado().getCodigo()) {
lista += i + " - " + emprestimos[i].getLivro().getTitulo() + "\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment