One of your friends gives you $10 for a charity walkathon -- this is your beginning amount.
Another friend gives you an amount per mile -- you will to calculate this value.
After 5 miles, you have raised $13.50 total --
-- Since one friend gave you $10.00, subtract this from the $13.50 to give you the amount by walking the 5 miles
-- $10.00 - $13.50 = $3.50
-- Since you walked 5 miles, divide $3.50 by 5 to give you $0.70 per mile earned.
So, an equation that represents the amount of money earned is: y = $0.70x+$10.00.
This is in slope-intercept form; the slope is $0.70 and represents the amount of money earned per mile and the intercept is $10.00 and represents the initial amount of money that you were given.
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:
True
Step-by-step explanation:
C. 3x^2+6 is the answer:)
3.2 divided by 0.4 would be 8