U^2(2u+3)+7(2u+3)
(u^2+7)(2u+3)
X² - 4x - 77 = 0
( x + 7) ( x - 11)
x + 7 = 0
x - 11 = 0
x = -7
x = 11
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:
for what??
Step-by-step explanation:
Can there be more than one answer? I think it could be add x, subtract 1, divide by 4 and/or subtract 1, add x, divide by 4