Computer Science, asked by cyruscrazieee, 18 days ago

Write a program using if ...else statement to find out the difference between two numbers.(in C++)​

Answers

Answered by northernstarmusic10
1

Answer:

#include <stdio.h>

int main() {

   int num1 = 2;

   int num2 = 5;

if (num1 == num2) {

printf("Those are  the same numbers!")

} else {

printf("Those are Not the same numbers!")

}

 

 

   return 0;

}

Explanation:

Similar questions