You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public void inserir(int quantia) throws PapelMoedaInvalidaException {
boolean achou = false;
for (int i = 0; i < papelMoeda.length && !achou; i++) { // Controle deveria ser usado o i e não o 1
if (papelMoeda[1] == quantia) {
achou = true;
}
}
public void inserir(int quantia) throws PapelMoedaInvalidaException {
boolean achou = false;
for (int i = 0; i < papelMoeda.length && !achou; i++) {
// Controle deveria ser usado o i e não o 1
if (papelMoeda[1] == quantia) {
achou = true;
}
}