Answer:
Step-by-step explanation:
Given : Expression = 
Simplifying the expression :
Step 1. Write the expression = 
Step 2. Add the similar elements: 
= 
Step 3. Add the similar elements: 
= 
Therefore,
is the simplified form of 
1/2 of angle D is given as 32 degrees.
The 3 inside angles need to add up to 180 degrees.
Angle B is a right angle, which is 90.
Angle C = 180 - 90 - 32 = 58 degrees.
Answer:
I'm assuming you have 4 options, and if so, the answer is A.
Step-by-step explanation:
Rounding 36.6 off to 37 will make it easier to estimate the quotient when dividing by 5. For example, I can easily come up with a solution in my head when dividing 37 to 5 but it's harder for me to come up with a solution to 36.6.
Since all the inside angles are 60, in order to add up to 180, the outside angles need to be 120.
// Input value is usernum.
// This code snippet sums 1 + 3 + 5 + ... + usernum
// The answer is stored in the variable summedvalue.
N = (int) (usernum+1)/2; // maximum number of integers to be summed
int *v = malloc(N*sizeof(int)); // allocate storage for array v
// Calculate the number of loop counts and assign array v..
count = 0;
k = 1;
while (1) {
if (k>usernum) { // do not extend v beyond usernum
break;
}
v(count) = k; // assign an odd integer to v, including usenum
count++;
k += 2; // k is an odd number
if k>usernum { // handle usernum as odd or even
k = usernum;
}
}
n = count; // the size of array v.
// Calculate the sum in a for loop
summedvalue = 0; // initialize summedvalue
for (i=0; i<=n; i++) {
summedvalue += v(i);
}