C++ Program : Sum, difference, product and quotient of Two Numbers



Write a program that will display the sum, difference, product and quotient of two numbers

#include <iostream.h>

#include <conio.h>


int main()

{

   int sum,diff,prod,div, x , y;


   cout<<" This is a program that will compute the "<<endl;

   cout<<"sum, difference,product and division of two numbers.\n";

   cout<<" Please enter the first integer.\n";

   cin>>x;

   cout<<" Please enter the second integer.\n";

   cin>>y;

    sum = x+y;

    diff = x-y;

    prod = x*y;

    div = x / y;


   cout<<"The sum is: ";

   cout<<sum<<endl;

   cout<<"The difference is: ";

   cout<<diff<<endl;

                cout<<"The product is: ";

   cout<<prod<<endl;

   cout<<"The division is: ";

   cout<<div<<endl;


   getch();

   return 0;

}

Share:

No comments:

Post a Comment

Thanks for Suggestion / Comment!

God Bless!

Our Sponsor

Popular Post