Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}
-3 your welcome very much
It would be 500 x 6.5, which is 3250 miles.
Answer:
8x^3 + 4x^2 + 4x -7
Step-by-step explanation:
Add like terms.
Answer:
41
Step-by-step explanation:
4x +5 = 7x -22
5 = 3x -22
27 = 3x
x = 27/3
x = 9
4(9) + 5 = RS
36+ 5 = RS
RS = 41