Try finding what x is first from the second equation. Then plug in the answer
Answer:
Area of the walkway = 8<em>x </em>+ 24
Step-by-step explanation:
Area of the total backyard = 
Area of total backyard = 
Now, Area of the rectangular garden = 
Area of the rectangular garden = 
Now area of the walkway poured with concrete = Area of the backyard - Area of the rectangular garden
= 
= 
= 8<em>x</em> + 24
12*$.73=$8.76-$7.68=$1.08 So it is $1.08 cheaper to buy it by the case.
Hope that helps.
What ? Don't make since bro
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;
}