import java.util.Scanner;
public class Programa {
public static void main(String args[]) {
Scanner scann = new Scanner(System.in);
int tamanho = Integer.parseInt(scann.nextLine());
String[] paises = new String[tamanho];
for (int i = 0; i < tamanho; i++) {
paises[i] = scann.nextLine();
}
String alvo = scann.nextLine();
String novoPais = " " ;
for (int i = 0; i < paises.length; i++) {
if (paises[i].equals(alvo)) {
novoPais = i;
break;
}
}
if (novoPais < paises.length) {
return -1;
} else {
return novoPais;
}
}
}
O método main
é void
então não pode retornar um valor int
.
obrigado, tentar ver se da certo agora.