Answer to Question #275773 in C++ for Foysal

Question #275773

C program to perform addition, subtraction, multiplication and


division Of two integer numbers, respectively 2 and 6 and show the result on the screen.

1
Expert's answer
2021-12-05T13:07:40-0500
#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;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment