Как я могу сказать следующее:
while(input is not an int){
do this
}
Я пробовал этот код, но я знаю, что он неправильный:
int identificationnumber;
Scanner sc3 = new Scanner(System.in);
identificationnumber = sc3.nextInt();
while( identificationnumber != int){ // this line is wrong
Scanner sc4 = new Scanner(System.in);
identificationnumber = sc4.nextInt();
}
Любые предложения, пожалуйста. Спасибо.