Answer:
46 mph and 61 mph
Step-by-step explanation:
Distance=speed*time
Let speed of one bus be x and another x+15
After 3 hours
First bus would have traveled 3x while second bus 3(x+15)=3x+45
Total distance= 3x+3x+45=6x+45
6x+45=321
6x=321-45=276
x=276/6=46 mph
x+15=46+15=61 mph
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:
read the problem
Step-by-step explanation:
a. write down the facts and figures
b. read the problem
c. find a relationship between what is given and what must be found
d. do the work
Answer:
g(4)=10
Step-by-step explanation:
Answer:
L = 13 m W = 11 m
Step-by-step explanation:
L = W + 2
area = L x W
143 = (W+2) * W
143 = W^2 + 2w
W^2 + 2W - 143 = 0
Use Quadratic Formula (a = 1 b = 2 c = - 143)
to find W = 11 m then L = 13