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

Posted 一根绿毛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java-判断输入数字的奇偶性相关的知识,希望对你有一定的参考价值。


 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 }

 

 

 

以上是关于Java-判断输入数字的奇偶性的主要内容,如果未能解决你的问题,请参考以下文章

编写一个程序,判断任意输入的整数的奇偶性。

python怎么写 列表中的数字的奇偶性

判断整数奇偶性的程序C语言?

C语言:编写一个程序,判断一个整数的奇偶性。如果是奇数,输入1,是偶数,输入2?

使用定义判断函数的奇偶性

python初学者-输入一个数判断奇偶性