Answer: The value of x is 45
Step-by-step explanation:
The equation x/3-6=9 is a linear equation, where x/3 is the same as one-third of x.
Thus it is easily simplified as such:
x/3-6=9
Collect like terms
x/3 = 9 + 6
x/3 = 15
i.e (1/3) of X = 15
To get the value of x, cross multiply
x = 3 x 15
x = 45
Thus, the value of x is 45
Hello there, and thank you for posting your question here on brainly.
A trapezoid is not possible to have for obtuse because it would look more like a diamond. Also, if it had 4 obtuse angles, it would have 6 sides.
Hope this helped!! ☺♥
Answer:
C.5.7
Step-by-step explanation:
plug in the x value then add 4.5 to 1.2 and booyyah
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;
}