21 times because you need 7/4=1 gallon and 3/4 just for one and 7x3 =21 so need 21/4
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;
}
Yes, because they both have the same slope, and a translation doesn't have an affect of the slope. Both slopes are 1, because they are going +1x and +1y, or 1/1 which = 1.
First estimate the square root of 10, about 3.16
and then the square root of 47, about 6.85
now what are the integers in between 3.16 and 6.85:
4,5,6
now add them all
4+5+6
=15
Hope this helps.