Jump to content

comparar Array de String


benkas

Recommended Posts

Algo deste género se percebi bem:

        
public static void main(String[] args) {
    String[] teste = {"carro", "mota", "aviao", "carro", "bicicleta", "carro"};
    int y;
    for (int z = 0; z < teste.length - 1; z++) {
        for (y = z + 1; y < teste.length; y++) {
            System.out.println("Comparar " + teste[z] + " com " + teste[y]);
            if (teste[z].compareTo(teste[y]) == 0) {
                System.out.println("Encontrado igual: " + teste[y]);
            }
        }
    }
}
Link to comment
Share on other sites

Algo deste género se percebi bem:

        
public static void main(String[] args) {
    String[] teste = {"carro", "mota", "aviao", "carro", "bicicleta", "carro"};
    int y;
    for (int z = 0; z < teste.length - 1; z++) {
        for (y = z + 1; y < teste.length; y++) {
            System.out.println("Comparar " + teste[z] + " com " + teste[y]);
            if (teste[z].compareTo(teste[y]) == 0) {
                System.out.println("Encontrado igual: " + teste[y]);
            }
        }
    }
}

Sim pelo que percebi deve ser isso também pode usar o equals ao invés do compareTo.

I haven’t lost my mind; it’s backed up on DVD somewhere!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.