The goal is to get the program to only accept numbers in the numero()
method (you can not accept it if it is a letter, period, question, etc.).
In the usuario()
method, only letters (can not accept numbers, period, question, etc.).
public void numero() {
System.out.println("Digite o número da conta: ");
this.setNumeroConta(sc.nextInt());
sc.nextLine();
if (this.getNumeroConta() >= 0) {
System.out.println("SUCESSO_NA_OPERÇÃO NUMERO_DA_CONTA");
}
} else {
System.out.println("Somente números");
}
}
public void usuario() {
System.out.println("Digite o nome de usuário: ");
this.setDono(sc.nextLine());
if (this.getDono() != null) {
System.out.println("SUCESSO_NA_OPERÇÃO NOME_DO_USUARIO");
}
} else{
System.out.println("Somente letras");
}
}