Tech Study

c++program to accept two integers and check they are equal or not

Introduction

c++program to accept two integers and check whether they are equal or not. I have used DEV-C++ compiler for debugging purpose. But you can use any C programming language compiler as per your availability.

#include<iostream>
using namespace std;

int main()
{
    int num1, num2;

    cout << "Input the values for Number1 and Number2 :";
    cin >> num1 >> num2;

    if (num1 == num2)
    {
        cout << "Number1 and Number2 are equal";
    }

    else
    {
        cout << "Number1 and Number2 are not equal";
    }
}

Result

C++ program to accept two integers and check whether they are equal or not
c++program to accept two integers and check whether they are equal or not

To learn more about c++ viste these links :

C++ Program to check whether an integer entered by the user is odd or even

C++ Program to Add Two Integers

TaggedC program to accept two integers and check whether they are equal or not

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