, , ( ), break, :
public static void main(String args[])
{
System.out.print("Enter the numeral representing your birth month: ");
do {
try {
int month = sc.nextInt();
break;
} catch (InputMismatchException ime) {
System.out.println("Your respone must be a whole number");
sc.nextLine();
}
} while (true);
}
, sc.nextLine() catch, Enter, , nextInt() . nextLine() . .