C program to perform addition, subtraction, multiplication and
division Of two integer numbers, respectively 2 and 6 and show the result on the screen.
#include<iostream>
using namespace std;
int main()
{
int a=6, b = 2, add, multiply, subtract, divide;
add=a+b;
multiply=a*b;
subtract =a-b;
divide=a/b;
cout<<"Sum = "<<add;
cout<<" \n Difference = "<<subtract;
cout<<" \n Product = "<<multiply;
cout<<" \n Quotient = "<<divide;
return 0;
}
Comments
Leave a comment