I have used Visual Studio 2012 for debugging purpose. But you can use any version of visul studio as per your availability..
using System;
namespace csharpprograms
{
class Program
{
static void Main(string[] args)
{
int year;
Console.WriteLine("Enter Year");
year = Convert.ToInt32(Console.ReadLine());
Console.WriteLine( year % 4 == 0 ? "Entered year is a leap" : "Not leap year");
Console.ReadLine();
Console.ReadLine();
}
}
}
I have used Visual Studio 2012 for debugging purpose. But you can use any version of visul studio as per your availability..
Result:
Enter Year
2018
Not leap year
need an explanation for this answer? contact us directly to get an explanation for this answer