Q:

C++ Program to perform all arithmetic operations

0

C++ Program to perform all arithmetic operations

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include<iostream>
using namespace std;    

int main() 
{
    int num1, num2;
    int sum, sub, mult, mod;
    float div;
    cout<< "Enter first number : ";
    cin >> num1;
    
    cout<< "Enter second number : ";
    cin >> num2;
    
    sum = num1 + num2;
    sub = num1 - num2;
    mult = num1 * num2;
    mod = num1 % num2;
    div = (float)num1 / num2;

    cout << "Sum of number1 and number2 : " << sum << endl;
    cout << "Difference of number1 and number2 : " << sub << endl;
    cout << "Product of number1 and number2 : " << mult << endl;
    cout << "Modulus of number1 and number2 : " << mod << endl;
    cout << "Quotient of number1 and number2 : " << div << endl;
    
    return 0;
}

Result:

Enter first number : 5

Enter second number : 3

Sum of number1 and number2 : 8

Difference of number1 and number2 : 2

Product of number1 and number2 : 15

Modulus of number1 and number2 : 2

Quotient of number1 and number2 : 1.66667

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C++ Program to print convert feet to meter... >>
<< C++ Program to Multiply two Floating Point Numbers...