Tech Study

Write C# program to check even or odd number using switch case

Introduction

I have used Visual Studio 2012 for debugging purpose. But you can use any version of visul studio as per your availability.

using System;
 
class Program
{
 
    static void Main(string[] args)
    {
 
        int num;
 
        //Reading a number from user
        Console.Write("Enter any number to check even or odd: ");
        num = Convert.ToInt32(Console.ReadLine());
 
        switch (num % 2)
        {
            //If n%2 == 0
            case 0: Console.WriteLine(num+" is even number");
                break;
 
            //Else if n%2 == 1
            case 1: Console.WriteLine(num +" is odd number");
                break;
        }
 
        Console.ReadLine();
 
    }
 
}

Result

Write C# program to check even or odd number using switch case
Write C# program to check even or odd number using switch case

TaggedWrite C program to check even or odd number using switch case

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more