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;
}
The question asks per week. So 1.5 cups times 7 days is 10.5 cups.
The pipe leaks 10.5 cups every week.
1: -5 = 3m + c
2: -2 = 0 + c
From equation 2, we knew c = -2
So we sub into equation 1 and got the value of m
-5 = 3m - 2
m = -1
The equation of line is y = -x - 2
That "equation" has an infinite number of "solutions", because
no matter what 'r' is, it's always a true statement.
The statement is equivalent to saying "I am I." or "You are you."