Is there a way to find if an entry is indeed a number without using try/catch? I want the program to keep asking the user to enter a number if s/he is "silly" enough to input something else.
System.out.print( "\n¿Edad minima a buscar? " );
edadMinima = input.nextInt();
Thanks!