I'm pretty sure it would be <span>x - y + 1 = 0 because if you plug in one of the coordinates into each equation, this is the only one that works.
</span><span>y - x + 1 = 0
2 - 1 + 1 = 0
2 = 0 not correct
</span><span>x - y + 1 = 0
1 - 2 + 1 = 0
0 = 0 correct
</span><span>-x - y + 1 = 0
-1 - 2 + 1 = 0
-2 = 0 not correct
</span>
Answer:
The answer is 8.1 h
Good luck!!!!!
Step-by-step explanation:
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:
$30
Step-by-step explanation:
Let 6 cans represent an "order" of fruit juice. 72 cans means 12 orders (72 divided by 6). Since each order costs $2.50, 12 orders costs $30 (12 multiplied by 2.5).