Introduction
This program in C# developed using .NET Framework 4.5 and Visual Studio 2013 will check if the entered number is a odd or even number. The Number is a even number if it is divisible by 2 and results with the reminder o0f zero.
C# Program to check if the Number is Odd or Even
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GinktageConsoleApp
{
class Program
{
static void Main(string[] args)
{
int input;
Console.Write("Enter the Number : ");
input = int.Parse(Console.ReadLine());
if (input % 2 == 0)
{
Console.Write("The Number is an Even Number");
}
else
{
Console.Write("The Number is an Odd Number");
}
Console.ReadLine();
}
}
}