We need to find the unit rate. To do so, divide the amount of money he makes by the number of parts sold. 1,700 / 16 = 106.25. So, if the man sells one computer part, he gets $106.25. To find the price of 30 parts, multiply 106.25 by 30. 106.25 * 30 = $3,187.50
The man will make $3,187.50 if he sells 30 parts.
Answer: x=7.5
Step-by-step explanation:
X=72 cause 180-(51+57) so 180-108 and the triangle is acute cause all of the angle measures are below 90 degrees.
So your answer is
x=72
Acute Triangle
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;
}