Answer: 1500
Step-by-step explanation:
Answer:
Step-by-step explanation:
hello :
an equation for the line A is : y-14 = 3(x-2) or y = 3x +8
an equation for the line B is : y-23 = 3(x-5) or y =3x +8
same line
C. The system of equations has an infinite number of real solutions.
note : same slope means parallal or identical
Answer: 8.61
Step-by-step explanation: Since the third decimal (7) is greater than 5, the second decimal is rounded up. Therefore, 8.6078 rounded to two decimal places is 8.61.
Answer:
32
Step-by-step explanation:
The answer would be 32:);)
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;
}