Tech Study

C# Program to Check Leap Year

Introduction

Write C# Program to check leap year using conditional operator. 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();
 
        }
    }
}

Result

Write C# Program to check leap year using conditional operator
Write C# Program to check leap year using conditional operator

 

Here are some more c# program for your practice ;

C# Program to check whether entered number is odd or even

C# Program to check uppercase or lowercase alphabets

TaggedWrite C# Program to check leap year using conditional operator

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more