题解 | #判断整数奇偶性#

判断整数奇偶性

http://www.nowcoder.com/practice/a8b018667e274af29b5f76a6673450fc

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while(sc.hasNext())
        {
            int n=sc.nextInt();
            if(n%2==0)
            {
                System.out.println("Even");
            }
            else{
                System.out.println("Odd");
            }
        }
    }
}

全部评论

相关推荐

04-14 20:10
已编辑
门头沟学院 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务