Write a program using if ...else statement to find out the difference between two numbers.(in C++)
Answers
Answered by
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