I need to enter a line of text of the style:
[email protected]
And to return:
p**********[email protected]
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
String email;
int longitud = Integer.MIN_VALUE;
System.out.println("Ingrese su email");
email = in.nextLine();
longitud = email.length();