Answer:
For 2 months
Step-by-step explanation:
Let after x months the cost of each health club is same,
Now, In club A,
Membership fees = $ 19,
Monthly fees = $ 21,
So, the total fees for x months = membership fees + total monthly fees for x months
= 19 + 21x
In Club B,
Membership fees = $ 23,
Monthly fees = $ 20,
So, the total fees for x months = membership fees + total monthly fees for x months
= 23 + 20x
Thus, we can write,
19 + 21x = 23 + 20x
21x - 20x = 23 - 21
x = 2
Hence, for 2 months the total cost of each health club would be same.
17 points after 0, 11 points after 0, and 2 points after 0
Answer:
Area: 40
Step-by-step explanation:
To find the area of a parallelogram you multiply the base times the height, or the length times the height. This is why you multiply 5x8 to get 40. The substitution could be 5 x 8 = X
X is the area.
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:
x+36y
Step-by-step explanation:
i did it and got a 100%