Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- public class Program
- {
- public static void Main()
- {
- var a = double.Parse(Console.ReadLine());
- if (a % 2 == 0)
- {
- Console.WriteLine("even");
- }
- else
- {
- Console.WriteLine("odd");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment