1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #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; } |
02 March 2019 3088 Written By: Rohit Mhatre
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap