Contact us - +12567847275

Computer Science

Split your previous lab assignment into two cpp files: one should have the main function, and the other should have two other functions.

Write a function that accepts two integers as input arguments and return their sum. Call this function from main( ) and call another function from main( ) that prints the result (sum). Thus, you need two separate functions besides main( ).

using namespace std;

int add(int, int);

void result(int);

int main()
{
int num1,num2,sum;

cout<<“Enter your two favorite numbers:”<<>

cin>>num1>>num2;

sum=add(num1,num2);

result(sum);

return 0;
}

int add(int x,int y) // add the two numbers you picked
{
int z;// z is where it’s stored

z=x+y;

return(z); // z is the return function
}

void result(int a) // results

{
cout<< “The sum of your two favorite numbers is ” <<>

}

Solution:

15% off for this assignment.

Our Prices Start at $11.99. As Our First Client, Use Coupon Code GET15 to claim 15% Discount This Month!!

Why US?

100% Confidentiality

Information about customers is confidential and never disclosed to third parties.

Timely Delivery

No missed deadlines – 97% of assignments are completed in time.

Original Writing

We complete all papers from scratch. You can get a plagiarism report.

Money Back

If you are convinced that our writer has not followed your requirements, feel free to ask for a refund.