Answer:
First one is 41
Second one is 87
Step-by-step explanation:
Make the shaded part as a trapezoid which is (3+6)*10/2 you just have to get rid of 2*2. So you get 41 as the answer.
The unshaded part will be 16*8 then subtracts the shaded part which is 41. Then you get the answer 87.
Answer:
28
Step-by-step explanation:
Answer:
3 < 5
Step-by-step explanation:
3 < 5
We can write this inequality, because three is less than five, and < means less than.
Answer:
The answer is 75
Step-by-step explanation:
3/8*200=75.
// 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);
}