Step-by-step explanation:
6t-12+15t | 25+15t
21t-12 | 25+15t
21t-12 < 25+15t
hence proved..
C(x) = 5x + 2
This is because at 1 hour it only cost 7 dollars, so it should only have 2 added to the end.
Answer:
no function
Step-by-step explanation:
umm...
Answer:
I don't know I'm sorry I tried to found answers but I couldn't
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;
}