English, asked by itcompengmy2342, 3 months ago

Write A program in C++ to Read Two Number and test it If Its Not Equal Print “ It Is Not Equal”?
(Using Class)

Answers

Answered by rajakishornayak1976
0

Answer:

koi freefire kelta hai kya

Explanation:

bolo

Answered by bsankocontoso976
1

#include <stdio.h>

void main()

{

int int1, int2;

printf("Input the values for Number1 and Number2 : ");

scanf("%d %d", &int1, &int2);

if (int1 == int2)

printf("Number1 and Number2 are equal\n");

else

printf("Number1 and Number2 are not equal\n");

}

Similar questions