int number =新的Scanner(System.in);
if(number%2 == 0){System.out.println(“输入的数字为偶数”);
}
Scanner keyboard = new Scanner(System.in)
上面创建了一个Scanner对象,并将对它的引用存储在名为“ keyboard”的变量中。现在,methods in the Scanner class将根据类型返回由键盘引入的值,在这种情况下
int number = keyboard.nextInt()
第二部分没问题