题解 | 判断整数奇偶性
判断整数奇偶性
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");
}
}
}
