Write C# Program to accept two integers and check whether they are equal or not

Introduction

Write C# Program to accept two integers and check whether they are equal or not. I have used Visual Studio 2012 for debugging purpose. But you can use any version of visul studio as per your availability..

using System;
 
public class charpexercise
{
    static void Main(string[] args)
    {
 
        int num1, num2;
 
        Console.WriteLine("Input the values for Number1 and Number2 : ");
        num1 = Convert.ToInt32(Console.ReadLine());
        num2 = Convert.ToInt32(Console.ReadLine());        
 
        if (num1 == num2)
        {
            Console.WriteLine("Number1 and Number2 are equal\n");
        }
 
        else
        {
            Console.WriteLine("Number1 and Number2 are not equal\n");
        }
 
        Console.ReadLine();
    }
}

Result

Write C# Program to accept two integers and check whether they are equal or not
Write C# Program to accept two integers and check whether they are equal or not

Leave a Comment