C++ Examples

WAP in C++ to Print the Result of the specified operations!

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.

Codeauri is Code Learning Hub and Community for every Coder to learn Coding by navigating Structurally from Basic Programming to Front-End Development, Back-End Development to Database, and many more.

Related Posts

C# Program to Find Sum of Rows & Columns of a Matrix

The Program in C# Program to Find Sum of Rows & Columns of a Matrix is given below: Output: Hello Codeauri Family,enter the number of rows and columns…

C# Program to Calculate Determinant of Given Matrix

The Program in C# Program to Calculate Determinant of Given Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns of the matrix…

C# Program to Find Sum of right Diagonals of a Matrix

The Program in C# Program to Find Sum of right Diagonals of a Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns…

C# Program to Find Transpose of Given Matrix

The Program in C# Program to Find Transpose of Given Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns in the matrix:22Enter…

C# Program for Multiplication of two square Matrices

The Program in C# Program for Multiplication of two square Matrices is given below: Output: Hello Codeauri Family, enter the number of rows/columns in the matrices:2Enter the elements…

C# Program to Delete Element at Desired position From Array

The Program in C# Program to Delete Element at Desired position From Array is given below: Output: Hello Codeauri Family, enter the number of elements in the array:4Enter…

Leave a Reply

Your email address will not be published. Required fields are marked *

Your Journey into Code Begins Now: Discover the Wonders of Basic Programming

X