miércoles, 8 de mayo de 2013

INGRESAR DOS NOMBRES Y MOSTRAR SI SON IGUALES O DISTINTOS


import java.util.Scanner;

public class ejercicio14 {
    public static void main(String[] ar) {
        Scanner teclado=new Scanner(System.in);
        String nombre1,nombre2;
        System.out.print("Ingrese primer nombre:");
        apellido1=teclado.next();
        System.out.print("Ingrese segundo nombre:");
        nombre2=teclado.next();
        if (nombre1.equals(nombre2)) {
            System.out.print("Los nombres son iguales");
        } else {
            System.out.print("Los nombres son distintos");
        }
    }
}

No hay comentarios:

Publicar un comentario