if password.equals("fgHPUw")
System.out.println("Correcto!");
else
System.out.println("Error!");
> Error!
String password = "FGHPUW";
if password.equalsIgnoreCase("fgHPUw")
System.out.println("Correcto!");
else System.out.println("Error!");
> Correcto!
0 comentarios:
Publicar un comentario