Obtuse quadrilaateral. midpoint(-1,3) with slooe 1/2
distance 2
Answer:
A!
Step-by-step explanation:
Answer:
11) x = 45
12) x = 30
Step-by-step explanation:
11)
3x + x = 180
4x = 180
x = 45
12)
4x = 5x - 30
4x - 5x = -30
-x = -30
x = 30
37.88888888 and it just keep repearing so there is no right answer dont foeget to mark me as the best answer
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;
}