Java-判断输入数字的奇偶性

有些话、适合烂在心里 提交于 2019-12-18 03:32:03

 1 import java.io.InputStream;
 2 import java.util.Scanner;
 3 
 4 public class ParityCheck {
 5     public static void main(String[] args) {
 6         boolean boo=true;
 7         while(boo){
 8             System.out.println("enter a number");
 9             try {//排除用户输入字符
10                 Scanner input=new Scanner(System.in);//接受用户输入的字符
11                 int number=input.nextInt();
12                 if(number%2==0){//判断奇偶性
13                     System.out.println("it is an even number");
14                 }
15                 else
16                 {
17                     System.out.println("it is odd");
18                 }
19             } catch (Exception e) {
20                 System.out.println("please enter a correct number instead of a character");
21                 continue;
22             }
23             boo=false;
24         }
25     }
26 }

 

 

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!