
Patrick B. answered 07/07/21
Math and computer tutor/teacher
inline
ComputeNum(int x, int y)
{
return(x - 5*y);
}
Kat H.
asked 07/06/21Write 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;
}
Patrick B. answered 07/07/21
Math and computer tutor/teacher
inline
ComputeNum(int x, int y)
{
return(x - 5*y);
}
Get a free answer to a quick problem.
Most questions answered within 4 hours.
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.