题解 | 判断整数奇偶性

判断整数奇偶性

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

using System;
public class Program {
    public static void Main() {
        string str;
         while ((str = Console.ReadLine()) != null)
        {
            Console.WriteLine(int.Parse(str) % 2 == 0 ? "Even" : "Odd");
        }
 


    }
}

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

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