Answer:
21
Step-by-step explanation:
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;
}
Answer:
the answer is 479.
Step-by-step explanation:
to make it simpler, pretend you start from 1. 1,7,so on. multiply six by 79, to get 474. but because you are starting from 5 and not 1, you have to add 5 on.
sorry im super bad at math so this might be wrong
5x + 2 -x = -4x
4x +2 = -4x
2 = -4x -4x
2 = -8x
x = - 1/4
hope this helps
These are how the graphs will look, they are color coded so have a look at the equations first.