Kat H.

asked • 07/06/21

C++. Write a function ComputeNum that takes two integer parameters and returns the first parameter minus 5 times the second parameter.

Write a function ComputeNum that takes two integer parameters and returns the first parameter minus 5 times the second parameter.


Ex: ComputeNum(4, 9) returns -41.


Code:


#include <iostream>

using namespace std;


/* Your code goes here */


int main() {

int input1, input2;

int result;

cin >> input1;

cin >> input2;

result = ComputeNum(input1, input2);

cout << result << endl;


return 0;

}


1 Expert Answer

By:

Still looking for help? Get the right answer, fast.

Ask a question for free

Get a free answer to a quick problem.
Most questions answered within 4 hours.

OR

Find an Online Tutor Now

Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.