The Program in C++ to Print the Result of the specified operations is given below:
#include <iostream>
using namespace std;
int main() {
int num1, num2, sum, difference, product, quotient, remainder;
double division;
cout << "Enter the first number: ";
cin >> num1;
cout << "Enter the second number: ";
cin >> num2;
sum = num1 + num2;
difference = num1 - num2;
product = num1 * num2;
quotient = num1 / num2;
remainder = num1 % num2;
division = (double)num1 / num2;
cout << "Sum of the numbers: " << sum << endl;
cout << "Difference of the numbers: " << difference << endl;
cout << "Product of the numbers: " << product << endl;
cout << "Quotient of the numbers: " << quotient << endl;
cout << "Remainder of the numbers: " << remainder << endl;
cout << "Division of the numbers: " << division << endl;
return 0;
}
Output:
Enter the first number: 45
Enter the second number: 54
Sum of the numbers: 99
Difference of the numbers: -9
Product of the numbers: 2430
Quotient of the numbers: 0
Remainder of the numbers: 45
Division of the numbers: 0.833333
Pro-Tips💡
In this program, the user is prompted to enter two numbers, which are stored in the variables ‘num1'
and ‘num2'
.
The program then performs several operations on these numbers, including addition, subtraction, multiplication, division and also remainder.
The result of each operation is then stored in a separate variable.
Finally, the program prints the results of each operation to the screen.
Note that the division operation is done by both integer division and also by converting one variable to double, thus it will give the exact division result in decimal form.
Learn C-Sharp ↗
C-sharp covers every topic to learn about C-Sharp thoroughly.
Learn C Programming ↗
C-Programming covers every topic to learn about C-Sharp thoroughly.
Learn C++ Programming↗
C++ covers every topic to learn about C-Sharp thoroughly.